blob: 2d057b1e4d19e99b2164a9a06538ef988e947817 [file] [log] [blame]
class Varargs {
void xxx() {
bar("aa", "hh");
}
void bar(String... ss) {
}
}