Files
kotlin-fork/compiler/testData/codegen/box/delegatedProperty/local/kt13557.kt
T
2018-06-09 19:15:38 +03:00

16 lines
237 B
Kotlin
Vendored

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