blob: 19947eecde6c3b49f54b109ea950f0d6acc7c315 [file] [log] [blame]
// "Add constructor parameter" "true"
class A {
private final String text;
public Foo(String text) {
this.text = text;
}
public Foo(int i, String text) {
this.text = text;
}
}