blob: fd698dc023ea546a076242e22d7f34791f0ea41e [file] [log] [blame]
// "Add constructor parameter" "true"
class A {
private final String te<caret>xt;
public Foo(String text) {
this.text = text;
}
public Foo(int i) {
}
}