blob: ba0ae9734a00eb0e01d329eed0453162693a36cc [file]
fun box(): String {
val o = "O"
fun ok() = o + "K"
class OK {
val ok = ok()
}
return OK().ok
}