Files
kotlin-fork/idea/testData/resolve/partialBodyResolve/PropertyByDelegate.kt
T
2014-11-24 20:11:28 +03:00

11 lines
160 B
Kotlin
Vendored

import kotlin.properties.Delegates
val prop: Int by Delegates.lazy {
print(1)
val v = f()
<caret>g()
v + 1
}
fun f(): Int = 1
fun g(): Int = 2