jdk-24/test/langtools/tools/javac/recovery/NoCrashForError.java
2022-05-31 15:01:38 +00:00

15 lines
412 B
Java

/**
* @test /nodynamiccopyright/
* @bug 8286895
* @summary Verify that errors don't crash the compiler.
* @compile/fail/ref=NoCrashForError.out -XDshould-stop.at=FLOW -XDdev -XDrawDiagnostics NoCrashForError.java
*/
public class NoCrashForError {
private void JDK8286895() {
Number n = 17;
if (! n instanceof Integer i) {
System.out.println("not Integer");
}
}
}