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