blob: bb3930701c4869528f8ec8c2e098883d7832ab80 [file] [log] [blame]
class NestedForeach {
void foo(final List<String> list) {
new Object() {
void one() {
new Object() {
void two() {
new Object() {
void three() {
for (String s : list) {
System.out.println(s);
}
}
};
}
};
}
};
}
}