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