aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test3/EmptyCatch.java
blob: bd1122e1666dae3f470d4d6a66e343e548d895ed (plain)
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;
    }
}