blob: ff576522f1359fb5ea67d2df65f192629c170472 [file] [log] [blame]
class C {
/**
* @param s
*/
void method(String... s) {
System.out.println(s[<selection>0</selection>]);
}
{
method("a", "b", "c");
method();
}
}