1
8bit OP ```
a = 2; return a; ``` |
2
8bit OP ```
public class Main { public static int testFinally() { int a = 1; try { if (a == 1) { throw new RuntimeException("REA"); } a = 2; return a; } finally { if (a == 1) { throw new RuntimeException("REB"); } } } public static void main (String args[]) { System.out.println(testFinally()); } } ``` |