Files
kotlin-fork/compiler/testData/codegen/box/callableReference/property/kt15447.kt
T
2021-10-02 06:14:35 +00:00

14 lines
236 B
Kotlin
Vendored

// IGNORE_BACKEND: WASM
// WASM_MUTE_REASON: STDLIB_LAZY
//WITH_RUNTIME
fun box(): String {
var methodVar = "OK"
fun localMethod() : String
{
return lazy { methodVar }::value.get()
}
return localMethod()
}