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

14 lines
269 B
Plaintext
Vendored

Resolve target: fun g(): kotlin.Int
----------------------------------------------
import kotlin.properties.Delegates
val prop: Int by Delegates.lazy {
/* STATEMENT DELETED: print(1) */
val v = f()
<caret>g()
v + 1
}
fun f(): Int = 1
fun g(): Int = 2