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