Files
kotlin-fork/compiler/testData/codegen/box/callableReference/property/kt15447.kt
T
2019-11-19 11:00:09 +03:00

13 lines
209 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
//WITH_RUNTIME
fun box(): String {
var methodVar = "OK"
fun localMethod() : String
{
return lazy { methodVar }::value.get()
}
return localMethod()
}