blob: a69c08035f891faa77aacaa7c0c9281adaecd898 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 8238735
* @summary javac should fail without throwing NPE
* @compile/fail/ref=T8238735.out -XDrawDiagnostics T8238735.java
*/
class T8238735 {
public static void meth() {
boolean first = true;
first = first ? false : (boolean)(() -> false) ;
}
}