blob: f604f99f13e310c46d1e245ea530c46e163f59ad [file] [log] [blame]
package test2;
public class AddCatchForConstructor {
int i;
public AddCatchForConstructor() {
this(3);
i++;
}
public AddCatchForConstructor(int k) {
i = k;
}
}