Files
kotlin-fork/compiler/testData/ir/irText/declarations/localDelegatedProperties.kt
T
2016-10-18 09:08:50 +03:00

4 lines
55 B
Kotlin
Vendored

fun test1() {
val x by lazy { 42 }
println(x)
}