aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test5/Issue155.java
blob: 3782e10d12643c856094795f96bd600291907b28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package test5;

public class Issue155 {
    public void bar() {}

    public void foo() throws Throwable {
        try {
            bar();
        } catch (java.lang.IllegalArgumentException e) {
            bar();
        }
    }

    public int test() throws Throwable {
        foo();
        return 1;
    }

    public static void main(String[] args) throws Throwable {
        new Issue155().foo();
    }
}