Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/collectionStubs/noStubsInIterable.kt
T
2020-09-22 15:26:34 +03:00

8 lines
223 B
Kotlin
Vendored

class MyIterable<E> : Iterable<E> {
class MyIterator<E> : Iterator<E> {
override fun hasNext(): Boolean = TODO()
override fun next(): E = TODO()
}
override fun iterator(): Iterator<E> = TODO()
}