Files
codeql/java/ql/test/stubs/retrofit-2.9.0/kotlin/collections/IntIterator.java
2022-05-02 15:42:15 +02:00

15 lines
411 B
Java
Generated

// Generated automatically from kotlin.collections.IntIterator for testing purposes
package kotlin.collections;
import java.util.Iterator;
import kotlin.jvm.internal.markers.KMappedMarker;
abstract public class IntIterator implements Iterator<Integer>, KMappedMarker
{
public IntIterator(){}
public abstract int nextInt();
public final Integer next(){ return null; }
public void remove(){}
}