import java.util.PrimitiveIterator;
import java.util.function.Consumer;
import java.util.function.LongConsumer;

public class LongIteratorForEachRemaining implements PrimitiveIterator.OfLong {

    public static void main(String argv[]) {
        new LongIteratorForEachRemaining().forEachRemaining((LongConsumer) null);
        new LongIteratorForEachRemaining().forEachRemaining((Consumer<Long>) null);
    }
    @Override
    public long nextLong() {
        return 0;
    }

    @Override
    public boolean hasNext() {
        return false;
    }

}
