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

13 lines
332 B
Java

/*
* @test /nodynamiccopyright/
* @bug 8168480
* @summary Speculative attribution of lambda causes NPE in Flow
* @compile/fail/ref=T8168480b.out -XDrawDiagnostics T8168480b.java
*/
import java.util.function.Supplier;
class T8168480b {
Supplier<Runnable> ssr = () -> () -> { while (true); System.err.println("Hello"); };
}