langtools/test/tools/javac/generics/diamond/T8041713/DiamondPlusUnexistingMethodRefCrashTest.java
8041713: Type inference of non-existent method references crashes the compiler
Reviewed-by: mcimadamore
/*
* @test /nodynamiccopyright/
* @bug 8041713
* @summary Type inference of non-existent method references crashes the compiler
* @compile/fail/ref=DiamondPlusUnexistingMethodRefCrashTest.out -XDrawDiagnostics DiamondPlusUnexistingMethodRefCrashTest.java
*/
public class DiamondPlusUnexistingMethodRefCrashTest<T> {
DiamondPlusUnexistingMethodRefCrashTest<String> m =
new DiamondPlusUnexistingMethodRefCrashTest<>(DiamondPlusUnexistingMethodRefCrashTest::doNotExists);
}