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