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