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