blob: f17d806b135a24aed3b23d0686adcd90634d0fef [file] [log] [blame]
class Test {
void foo(int a, String... s) {}
{
foo(1, "a", "bbb");
}
}