diff -r 000000000000 -r 959103a6100f test/tools/javac/lambda/TargetType40.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/tools/javac/lambda/TargetType40.java Wed Apr 27 01:34:52 2016 +0800 @@ -0,0 +1,18 @@ +/* + * @test /nodynamiccopyright/ + * @bug 8003280 + * @summary Add lambda tests + * compiler silently crashes when void method is passed as argument in overloaded call site + * @compile/fail/ref=TargetType40.out -XDrawDiagnostics TargetType40.java + */ + +class TargetType40 { + void m(String s) { } + void m(Integer i) { } + + void void_method() {} + + void test() { + m(void_method()); + } +}