blob: 74058d88af3f4d9758d554cd07b54a736bd0ce05 [file] [log] [blame]
public class Test {
private void foo(String... args) {}
public void bar() {
foo("foo");
foo("foo");
}
public static void main(String[] args){
new Test().bar();
}
}