blob: 30ccf5a8d3507f608593e53f5238c4fb96ecfe29 [file] [log] [blame]
class A {
private int i;
private int j;
private int s;
public A(int i, int j) {
<selection>this.i = i;</selection>
this.j = j;
}
public A(int i, String s) {
this.i = i;
this.s = s;
}
}