break in try-finally
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
*/INFO