jdk-24/test/langtools/tools/javac/lambda/BadStatementInLambda.java
2017-09-12 19:03:39 +02:00

20 lines
470 B
Java

/*
* @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=BadStatementInLambda.out -XDrawDiagnostics BadStatementInLambda.java
*/
class BadStatementInLambda {
interface SAM{
Object m();
}
SAM t1 = ()-> { null; };
SAM t2 = ()-> { 1; };
SAM t3 = ()-> { 1 + 5; };
}