blob: 504df1b946beae6a1be71bf547447ae7d97c0537 [file] [log] [blame]
// "Move initializer to constructor" "true"
class X {
final String s;
final String t;
X(String s) {
this.s = s;
t = "t";
}
X() {
this("s");
}
}