16 lines
237 B
Kotlin
Vendored
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
|
|
}
|