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