blob: 66a5f28e7f65ae1985401d904093ebe1a43c64d7 [file] [log] [blame]
import java.util.*;
public class C {
Object o = new Object() {
class Inner {
}
void foo(List<Inner> inners) {
for (Inner <selection>inner<caret></selection> : inners) {
}
}
};
}