Files
kotlin-fork/compiler/testData/codegen/box/delegatedProperty/local/kt13557.kt
T
2016-11-10 15:12:16 +01:00

16 lines
231 B
Kotlin
Vendored

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