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

9 lines
285 B
Kotlin
Vendored

class MyIterable<E> : MutableIterable<E> {
class MyIterator<E> : MutableIterator<E> {
override fun hasNext(): Boolean = TODO()
override fun next(): E = TODO()
override fun remove() { TODO() }
}
override fun iterator(): MutableIterator<E> = TODO()
}