blob: 45a4616b85450c576367e4feb682880a80fb6373 [file]
// WITH_STDLIB
import kotlin.test.*
class A {
lateinit var s: String
fun foo() = s
}
fun box(): String {
val a = A()
a.s = "OK"
return a.foo()
}