Files
kotlin-fork/compiler/testData/ir/irText/declarations/localDelegatedProperties.kt
T

13 lines
156 B
Kotlin
Vendored

// WITH_RUNTIME
fun test1() {
val x by lazy { 42 }
println(x)
}
fun test2() {
var x by hashMapOf<String, Int>()
x = 0
x++
x += 1
}