Files
kotlin-fork/compiler/testData/codegen/box/specialBuiltins/entrySetSOE.kt
T
Denis Zharkov 5c34b27ea9 Fix stub generation for special built-ins
Do not generate stubs if there is no special bridge in the current class
- there are already Kotlin super class in hierarchy
- special bridge has the same signature as method itself

 #KT-11915 Fixed
2016-06-30 20:12:34 +03:00

16 lines
307 B
Kotlin
Vendored

import java.util.*
open class Map1 : HashMap<String, Any?>()
class Map2 : Map1()
fun box(): String {
val m = Map2()
if (m.entries.size != 0) return "fail 1"
m.put("56", "OK")
val x = m.entries.iterator().next()
if (x.key != "56" || x.value != "OK") return "fail 2"
return "OK"
}