JVM_IR more precise check for special bridges in super class

KT-41123
This commit is contained in:
Dmitry Petrov
2020-10-01 17:54:07 +03:00
parent cf5bd38bec
commit e018f2bd3e
19 changed files with 156 additions and 118 deletions
+11
View File
@@ -0,0 +1,11 @@
// WITH_RUNTIME
// KJS_WITH_FULL_RUNTIME
// IGNORE_BACKEND_FIR: JVM_IR
open class A : HashMap<String, String>()
fun box(): String {
val a = object : A() {}
a["OK"] = "OK"
return a["OK"]!!
}