mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 01:11:31 +07:00
GitOrigin-RevId: ea061b03905f994b46b0339d9157dc693f8fbd84
8 lines
222 B
Java
8 lines
222 B
Java
public class VarargsArguments {
|
|
public VarargsArguments(String ... strs) {}
|
|
|
|
public void test1(VarargsArguments o, String... foo) {}
|
|
void bar() {
|
|
test1(new VarargsArguments(<selection> "", ""</selection>));
|
|
}
|
|
} |