blob: f42c8ed8412841f7dda508c1d2c8df3e9f37dd25 [file] [log] [blame]
// "Add constructor parameter" "true"
class A {
private final int field;
A(int field, String... strs) {
this.field = field;<caret>
}
}