blob: 53b78ecc3d3cb0c126ea0e35594000a954b2e81b [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.s = s;
this.i = i;
}
}