|
Java example source code file (MethodReference54.java)
The MethodReference54.java Java example source code/* * @test /nodynamiccopyright/ * @bug 8003280 * @summary Add lambda tests * method call with bad qualifier generates NPE if argument is a method reference * @compile/fail/ref=MethodReference54.out -XDrawDiagnostics MethodReference54.java */ class MethodReference54 { interface SAM { void m(); } void test() { nonExistent.m(MethodReference54::get); } static String get() { return ""; } } Other Java examples (source code examples)Here is a short list of links related to this Java MethodReference54.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.