class Test { void foo(int... i) { int[] p = i; } void bar() { foo(1, 2); } }