mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
GitOrigin-RevId: 4b27beeecd36dcedaa92483176128186747b7e5b
15 lines
195 B
Java
15 lines
195 B
Java
import java.util.Iterator;
|
|
|
|
class Main {
|
|
{
|
|
new Iterable<Integer>() {
|
|
// comment
|
|
|
|
@Override
|
|
public Iterator<Integer> iterator() {
|
|
return null;
|
|
}
|
|
};
|
|
}
|
|
}
|