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