Files
kotlin-fork/compiler/testData/diagnostics/tests/multimodule/duplicateClass/collectionMethodStub.kt
T
Andrey Breslav d80907543f KT-5697 Duplicate Unit type
#KT-5697 Fixed
2014-08-29 12:51:07 +04:00

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()
}
}