blob: 886c913632815d6a3bf80e59088b9148c118d429 [file] [log] [blame]
class C {
void method(int k, String... s) {
System.out.println(s[<selection>k</selection>]);
}
{
method("a", "b", "c");
method();
}
}