blob: 53ecff2a53f1262663326630fd78aafc890520e3 [file] [log] [blame]
public class X {
void f(int i, String... strings) {
}
void g(String string) {
f(1, string);
}
}