Files
kotlin-fork/compiler/testData/codegen/box/callableReference/property/kt15447.kt
T

12 lines
179 B
Kotlin
Vendored

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