blob: 53712390f4ad487fbebbffc2ab261134ae810936 [file] [log] [blame]
class ChainedConstructor {
String s;
String t;
ChainedConstructor(String s) {
this.s = s;
}
ChainedConstructor() {
this("a");
}
{<caret>
System.out.println();
t = "b";
}
}