blob: cb85bbd8d728d91ac016f219147b0ca070a700f8 [file] [log] [blame]
public class Foo {
public Foo(String ... strs) {}
public void test1(Foo o, String... foo) {}
void bar() {
String[] strs = {"", ""};
test1(new Foo(strs));
}
}