Files
kotlin-fork/native/native.tests/testData/codegen/lower/localDelegatedProperty.kt
T
2024-01-02 18:47:05 +00:00

18 lines
199 B
Kotlin
Vendored

// MODULE: lib
// FILE: lib.kt
fun foo(): String {
val bar: String by lazy {
"OK"
}
return bar
}
// MODULE: main(lib)
// FILE: main.kt
import kotlin.test.*
fun box() = foo()