blob: 4cbf4b67339d4614ab6a32089f09789d4130d3a0 [file] [log] [blame]
class Tester {
void method(String x, String... y) {
}
void method1(String x, String[] y) {
}
void caller() {
method("", "a", "b");
method1("", new String[]{"a", "b"});
}
}