blob: e6c469a7d93c1bd5ea5887e47c5f18c7df33196b [file] [log] [blame]
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);
}
}