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