Files
kotlin-fork/compiler/testData/ir/irText/firProblems/kt43342.kt
T
2020-12-01 14:23:19 +03:00

10 lines
250 B
Kotlin
Vendored

// WITH_RUNTIME
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
}
}