langtools/test/tools/javac/lambda/BadStatementInLambda02.java
author vromero
Tue, 06 Sep 2016 17:04:43 -0700
changeset 40835 6ab9ed1abc46
parent 14547 86d8d242b0c4
permissions -rw-r--r--
8162546: change hidden options -Xdebug to --debug, -XshouldStop to --should-stop, and -diags to --diags Reviewed-by: mcimadamore

/*
 * @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) { }
}