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