1 2 3 4 5 6 7 8 9 10 11 12 13 14
package test3; public class EmptyCatch { public int test(int i) { try { i += 200; } finally { i += 10; } return i; } }