blob: c1117cc0b589cbe1a981154d953ddf4419c05c56 [file] [log] [blame]
class Test {
void foo(int... i) {
if (i.lenght == 0) {
}
}
void bar(){
foo(1, 2);
}
}