Files
kotlin-fork/compiler/testData/codegen/box/callableReference/property/kt15447.kt
T
2018-06-09 19:15:38 +03:00

13 lines
204 B
Kotlin
Vendored

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