Files
kotlin-fork/compiler/testData/diagnostics/tests/multimodule/duplicateClass/collectionMethodStub.kt
T

22 lines
382 B
Kotlin
Vendored

// FIR_IDENTICAL
// FILE: f1.kt
// SKIP_TXT
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()
}
}