jdk-24/test/langtools/tools/javac/recovery/ClassBlockExitsErrors.java
Jan Lahoda 4b6e75dc72 8243047: javac may crash when processing exits in class initializers
Flow should handle invalid exits from class initializers gracefully

Reviewed-by: vromero
2020-04-20 12:36:09 +02:00

29 lines
550 B
Java

/*
* @test /nodynamiccopyright/
* @bug 8243047
* @summary javac should not crash while processing exits in class initializers in Flow
* @compile/fail/ref=ClassBlockExitsErrors.out -XDrawDiagnostics -XDshould-stop.at=FLOW ClassBlockExitsErrors.java
*/
public class ClassBlockExitsErrors {
class I1 {
{
return;
}
void test() {}
}
class I2 {
{
break;
}
void test() {}
}
class I3 {
{
continue;
}
void test() {}
}
}