mirror of
https://github.com/github/codeql.git
synced 2025-12-21 11:16:30 +01:00
15 lines
411 B
Java
Generated
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(){}
|
|
}
|