// WITH_RUNTIME // EXTRACTION_TARGET: lazy property val n: Int = 1 private val i: Int by lazy { n + 1 } fun foo(): Int { return i }