mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-21 06:27:54 +07:00
9 lines
190 B
Java
9 lines
190 B
Java
public class Foo {
|
|
public Foo(String ... strs) {}
|
|
|
|
public void test1(Foo o, String... foo) {}
|
|
void bar() {
|
|
String[] strs = {"", ""};
|
|
test1(new Foo(strs));
|
|
}
|
|
} |