blob: 0e380040c7d5b6229e6be17db682487d429724cb [file] [log] [blame]
class Test {
private companion object {
val res = "OK"
}
fun res() = res
}
fun box(): String {
return Test().res()
}