blob: d0288afb80403ab612e169adc83fc6eab9b7df45 [file]
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