blob: 6b9b657b29cf497d648e7d18c2574c15c1300ebc [file] [log] [blame]
public class Test {
String str;
public Test(int i){}
public Test(){
this(2);
}
public Test(String s){
this(3);
str = s;
}
void foo(){}
public static void main(String[] args){
new Test(1).foo();
}
}