Files
kotlin-fork/compiler/testData/ir/irText/declarations/delegatedProperties.kt
T
2023-03-22 15:18:17 +00:00

13 lines
231 B
Kotlin
Vendored

// WITH_STDLIB
// IGNORE_BACKEND: JS_IR
// IGNORE_BACKEND: JS_IR_ES6
val test1 by lazy { 42 }
class C(val map: MutableMap<String, Any>) {
val test2 by lazy { 42 }
var test3 by map
}
var test4 by hashMapOf<String, Any>()