blob: 5583e3c06a5dda2160e23e2954875939061ca664 [file] [log] [blame]
class Test {
void foo(int... i) {
int[] p = i;
}
void bar() {
foo(1, 2);
}
}