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