b2606735c5
#KT-23117 Fixed
15 lines
256 B
Kotlin
Vendored
15 lines
256 B
Kotlin
Vendored
// IGNORE_BACKEND: JS_IR, JVM_IR
|
|
//WITH_RUNTIME
|
|
import kotlin.properties.Delegates.notNull
|
|
|
|
fun box(): String {
|
|
var bunny by notNull<String>()
|
|
|
|
val obj = object {
|
|
val getBunny = { bunny }
|
|
}
|
|
|
|
bunny = "OK"
|
|
return obj.getBunny()
|
|
}
|