break in try-finally

Run Settings
LanguageJava
Language Version
Run Command
public class Main { public static void main(String[] args) { System.out.println("Before block\n{"); block: { try { System.out.println("\tIn try"); break block; // !!! } finally { System.out.println("\tIn finally"); // ??? } } System.out.println("}\nAfter block"); } } /* Explanation: Only System.exit() can break try-catch-finally construction */
Editor Settings
Theme
Key bindings
Full width
Lines