Files

8 lines
93 B
Plaintext

class Varargs {
void xxx() {
bar("aa", "hh");
}
void bar(String... ss) {
}
}