blob: 563dddcca1b26930e5e7eeb6ac6baffcdb05f57c [file] [log] [blame]
class A {
void bar(int i){
method(1);
method(i, "a");
method(1, "a", "b");
}
void m<caret>(String... args) {
method(1, args);
}
void method(int i, String... args) {
}
}