Files
openide/java/java-tests/testData/refactoring/introduceVariable/ArrayFromVarargs1.after.java
T

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));
}
}