blob: de7dae99935d3ca3dcb80883f7adfc329e92e677 [file] [log] [blame]
class Test {
String[] foos;
void test() {
for (String foo : newMethod()) {
}
System.out.println(newMethod().length);
}
private String[] newMethod() {
return foos;
}
}