Files
kotlin-fork/compiler/testData/codegen/box/delegatedProperty/local/kt13557.kt
T
2020-04-10 14:49:27 +03:00

16 lines
237 B
Kotlin
Vendored

// KJS_WITH_FULL_RUNTIME
//WITH_REFLECT
import kotlin.properties.Delegates
fun box(): String {
var foo: String by Delegates.notNull();
object {
fun baz() {
foo = "OK"
}
}.baz()
return foo
}