diff -r 000000000000 -r 959103a6100f test/tools/javac/lambda/MethodReference21.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/tools/javac/lambda/MethodReference21.java Wed Apr 27 01:34:52 2016 +0800 @@ -0,0 +1,23 @@ +/* + * @test /nodynamiccopyright/ + * @bug 8003280 + * @summary Add lambda tests + * check that erroneous method references are flagged with errors as expected + * @author Maurizio Cimadamore + * @compile/fail/ref=MethodReference21.out -XDrawDiagnostics MethodReference21.java + */ + +class MethodReference21 { + + interface SAM { + void m(); + } + + void call(SAM s) {} + + SAM s = NonExistentType::m; + + { + call(NonExistentType::m); + } +}