blob: 8d69a2330c70a24346a4666b774e6f8855585cc5 [file] [log] [blame]
class Test {
void foo(String... i) {
}
void bar() {
foo("str", 2);
}
}