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

16 lines
210 B
Kotlin
Vendored

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