mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
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;
|
|
}
|
|
};
|
|
}
|
|
}
|