diff -r 000000000000 -r 959103a6100f test/tools/javac/lambda/MethodReference04.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/tools/javac/lambda/MethodReference04.java Wed Apr 27 01:34:52 2016 +0800 @@ -0,0 +1,14 @@ +/* + * @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 +}