4b6e75dc72
Flow should handle invalid exits from class initializers gracefully Reviewed-by: vromero
29 lines
550 B
Java
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() {}
|
|
}
|
|
} |