blob: b10a375be4d947ff1fcc90c98bb59d63a4644346 [file] [log] [blame]
class Test {
Test(){}
void foo(int... f) {}
void bar() {
foo(1, 2);
}
}