blob: 70f9fa161b005690faedb4927cc8e828202c57b3 [file] [log] [blame]
class A {
private int i;
private int j;
private int s;
public A(int i, int j) {
this(i);
this.j = j;
}
private A(int i) {
this.i = i;
}
public A(int i, String s) {
this(i);
this.s = s;
}
}