Files
kotlin-fork/compiler/testData/ir/irText/firProblems/kt43342.kt
T
2023-06-09 08:22:21 +00:00

13 lines
310 B
Kotlin
Vendored

// WITH_STDLIB
// IGNORE_BACKEND_K2: JS_IR
// IGNORE_BACKEND_K2: JS_IR_ES6
open class ControlFlowInfo<K, V>(val map: Map<K, V>): Map<K, V> by map
class StringFlowInfo(map: Map<String, String>): ControlFlowInfo<String, String>(map) {
fun foo(info: StringFlowInfo) {
keys
info.keys
}
}