You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

InitializerFlowCf.java 223B

12345678
  1. public class InitializerFlowCf {
  2. { throw new Error("bad error"); } // ERR initializer can't complete normally
  3. static { throw new Error("bad error #2"); } // ERR static initializer can't complete normally
  4. }