0d76634f6b
Don't render the whole 'kotlin' package in some tests, because test data will change every time something is updated in built-ins
21 lines
365 B
Kotlin
Vendored
21 lines
365 B
Kotlin
Vendored
// 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()
|
|
}
|
|
|
|
} |