aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test2/AddCatchForConstructor.java
blob: f604f99f13e310c46d1e245ea530c46e163f59ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package test2;

public class AddCatchForConstructor {
    int i;
    public AddCatchForConstructor() {
        this(3);
        i++;
    }

    public AddCatchForConstructor(int k) {
        i = k; 
    }
}