Files
kotlin-fork/compiler/fir/resolve/testData/resolveWithStdlib/delegationByMap.kt
T
2020-03-02 09:49:28 +03:00

4 lines
98 B
Kotlin
Vendored

class A {
val x by mutableMapOf<String, Int>()
val y: Int by mutableMapOf<String, Int>()
}