jdk-24/langtools/test/tools/javac/lambda/MethodReference54.java
Maurizio Cimadamore a494f0ab86 8003280: Add lambda tests
Turn on lambda expression, method reference and default method support

Reviewed-by: jjg
2012-11-17 19:01:03 +00:00

20 lines
434 B
Java

/*
* @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 ""; }
}