jdk-24/test/langtools/tools/javac/lambda/MethodReference04.java

15 lines
367 B
Java
Raw Normal View History

/*
* @test /nodynamiccopyright/
* @bug 8003280
* @summary Add lambda tests
* check that target type of a method ref is a SAM type
* @author Maurizio Cimadamore
* @compile/fail/ref=MethodReference04.out -XDrawDiagnostics MethodReference04.java
*/
class MethodReference04 {
void m(Integer i) {}
Object o = this::m; //fail - not a valid target type
}