Files
openide/java/java-tests/testData/refactoring/introduceVariable/ArrayFromVarargs1.after.java
Roman Shevchenko 6a7cc72eab Cleanup (typos in test data)
GitOrigin-RevId: d83baca2662fb7c124c7bec51bf53d78dc4fb303
2019-07-02 06:52:16 +03:00

9 lines
196 B
Java

public class Foo {
public Foo(String ... strs) {}
public void test1(Foo o, String... foo) {}
void bar() {
String[] strings = {"", ""};
test1(new Foo(strings));
}
}