blob: 15d22bc2280227ce3b99f1b1238daa9919e6d70c [file] [log] [blame]
// "Add constructor parameter" "true"
class Test {
private final String s;
private final int i;
Test(String s) {
this.s = s;
i = 0;
}
Test(int i) {
this.i = i;<caret>
s = "s";
}
}