|
Java example source code file (BadStatementInLambda02.java)
The BadStatementInLambda02.java Java example source code/* * @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) { } } Other Java examples (source code examples)Here is a short list of links related to this Java BadStatementInLambda02.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.