Files
kotlin-fork/compiler/testData/codegen/box/callableReference/property/kt15447.kt
T
2018-06-28 12:26:41 +02:00

14 lines
230 B
Kotlin
Vendored

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