Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }