mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
15 lines
229 B
Java
15 lines
229 B
Java
import java.util.*;
|
|
|
|
public class C {
|
|
Object o = new Object() {
|
|
class Inner {
|
|
}
|
|
|
|
void foo(List<Inner> inners) {
|
|
for (Inner <selection>inner<caret></selection> : inners) {
|
|
|
|
}
|
|
}
|
|
};
|
|
}
|