9a4a3d1f49
^KT-56543 Merge-request: KT-MR-9299 Merged-by: Dmitrii Gridin <dmitry.gridin@jetbrains.com>
24 lines
410 B
Kotlin
Vendored
24 lines
410 B
Kotlin
Vendored
// IGNORE_REVERSED_RESOLVE
|
|
// FIR_IDENTICAL
|
|
// SKIP_TXT
|
|
// 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()
|
|
}
|
|
|
|
}
|