Files
kotlin/compiler/testData/codegen/box/builtinStubMethods/ListIterator.kt
2016-11-09 21:41:12 +03:00

29 lines
728 B
Kotlin
Vendored

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
class MyListIterator<T> : ListIterator<T> {
override fun next(): T = null!!
override fun hasNext(): Boolean = null!!
override fun hasPrevious(): Boolean = null!!
override fun previous(): T = null!!
override fun nextIndex(): Int = null!!
override fun previousIndex(): Int = null!!
}
fun expectUoe(block: () -> Any) {
try {
block()
throw AssertionError()
} catch (e: UnsupportedOperationException) {
}
}
fun box(): String {
val list = MyListIterator<String>() as java.util.ListIterator<String>
expectUoe { list.set("") }
expectUoe { list.add("") }
return "OK"
}