blob: 45ea51dddf118e25bff168fcad7e014cab28561f [file] [log] [blame]
class Test {
void foo(int... i) {
int[] p = i;
}
void bar() {
foo(1);
}
}