|
Java example source code file (BadLambdaPos.java)
The BadLambdaPos.java Java example source code/* * @test /nodynamiccopyright/ * @bug 8003280 * @summary Add lambda tests * check that lambda is only allowed in argument/cast/assignment context * @author Maurizio Cimadamore * @compile/fail/ref=BadLambdaPos.out -XDrawDiagnostics BadLambdaPos.java */ interface SAM { void m(Integer x); } class Test { void test(Object x) {} void test1() { test((int x)-> { } + (int x)-> { } ); test((int x)-> { } instanceof Object ); } void test2() { int i2 = (int x)-> { } + (int x)-> { }; boolean b = (int x)-> { } instanceof Object; } void test3() { test((Object)(int x)-> { }); Object o = (Object)(int x)-> { }; } } Other Java examples (source code examples)Here is a short list of links related to this Java BadLambdaPos.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.