blob: a0ab8a45a6754779aee223d3b52f77bf47355d1c [file]
var result: String = "FAIL"
public open class Test() {
open public fun test() : Unit {
result = ok!!
}
companion object {
private val ok : String? = "OK"
}
}
fun box() : String {
Test().test()
return result
}