Files
kotlin/compiler/testData/codegen/box/builtinStubMethods/MapEntryWithSetValue.kt
2013-09-25 20:59:24 +04:00

15 lines
445 B
Kotlin

class MyMapEntry<K, V>: Map.Entry<K, V> {
override fun hashCode(): Int = 0
override fun equals(other: Any?): Boolean = false
override fun getKey(): K = throw UnsupportedOperationException()
override fun getValue(): V = throw UnsupportedOperationException()
public fun setValue(value: V): V = value
}
fun box(): String {
(MyMapEntry<String, Int>() as MutableMap.MutableEntry<String, Int>).setValue(1)
return "OK"
}