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