blob: 5b1f93172630f9250ce879e99d66269fc17971c0 [file] [log] [blame]
// "Add constructor parameter" "true"
class A {
private final int <caret>field;
private int j;
A() {
this(0);
}
A(int j) {
this.j = j;
}
}