Files
openide/java/java-tests/testData/refactoring/inlineLocal/IDEADEV13151.java
Dmitry Jemerov b43c03ca2f moving tests
2009-09-10 19:49:38 +04:00

13 lines
237 B
Java

class Tester {
void method(String x, String... y) {
}
void method1(String x, String[] y) {
}
void caller() {
String[] thing = {"a", "b"};
method("", <caret>thing);
method1("", thing);
}
}