blob: 03b6e03df1fe397fdc9ad2f595dd3bd8702a6bfc [file]
// WITH_STDLIB
import kotlin.test.*
fun box(): String {
lateinit var s: String
fun foo() = s
s = "OK"
return foo()
}