Generating stub methods for read-only map and entry.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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"
|
||||
}
|
||||
Reference in New Issue
Block a user