Files
kotlin-fork/compiler/fir/resolve/testData/resolveWithStdlib/simpleDelegatedToMap.kt
T
2020-02-14 09:18:52 +03:00

5 lines
101 B
Kotlin
Vendored

class C(val map: MutableMap<String, Any>) {
var foo by map
}
var bar by hashMapOf<String, Any>()