diff -r 000000000000 -r 959103a6100f test/tools/javac/lambda/BadStatementInLambda02.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/tools/javac/lambda/BadStatementInLambda02.java Wed Apr 27 01:34:52 2016 +0800 @@ -0,0 +1,19 @@ +/* + * @test /nodynamiccopyright/ + * @bug 8003280 + * @summary Add lambda tests + * check that the compiler emits meaningful diagnostics when the lambda body contains bad statements + * @author Maurizio Cimadamore + * @compile/fail/ref=BadStatementInLambda02.out -XDrawDiagnostics BadStatementInLambda02.java + */ + +class BadStatementInLambda02 { + + interface SAM { + void m(); + } + + { call(()-> { System.out.println(new NonExistentClass() + ""); }); } + + void call(SAM s) { } +}