blob: 7885c0fe51d6c8a76b76aa5d949f37577377f033 (
plain)
1
2
3
4
5
6
7
8
|
public class InitializerFlowCf {
{ throw new Error("bad error"); } // ERR initializer can't complete normally
static { throw new Error("bad error #2"); } // ERR static initializer can't complete normally
}
|