jdk-24/test/langtools/tools/javac/lambda/MethodReference04.java
2017-09-12 19:03:39 +02:00

15 lines
367 B
Java

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