blob: 49a38df4e1723f0a565a0df5d671b918c4ab0701 [file] [log] [blame]
class Test {
void fo<caret>o(int i, int ... ja){
}
void bar() {
foo(0);
foo(0, 1);
foo(0, 1, 2);
foo(0, new int[]{3, 4});
foo(0, new int[0]);
}
}