Files
kotlin-fork/compiler/testData/codegen/box/callableReference/property/kt15447.kt
T
2021-12-07 21:33:34 +03:00

12 lines
179 B
Kotlin
Vendored

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