blob: 5e779c9e12f5341054e908905abcd70486a2c931 [file] [log] [blame]
public class Test {
String[] f = new String[0];
void foo() {
bar(1, f);
}
void bar(int i, String[] g){}
}