7550a1870b
#KT-43342 Fixed
10 lines
250 B
Kotlin
Vendored
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
|
|
}
|
|
} |