blob: 9156d6996fca590502756f5e6a90c99f1fc0bee4 [file] [log] [blame]
class ChainedConstructor {
String s;
String t;
ChainedConstructor(String s) {
this.s = s;
System.out.println();
t = "b";
}
ChainedConstructor() {
this("a");
}
}