d80907543f
#KT-5697 Fixed
20 lines
353 B
Kotlin
20 lines
353 B
Kotlin
// FILE: f1.kt
|
|
|
|
package kotlin
|
|
|
|
class Unit
|
|
|
|
// FILE: f2.kt
|
|
|
|
class C: MutableIterator<Int> {
|
|
override fun remove(): Unit {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
override fun next(): Int {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
override fun hasNext(): Boolean {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
|
|
} |