blob: 8e470a4e58e948b98ea8b17ca224dea8d96f7ea3 [file] [log] [blame]
class Outer {
class Nested {
companion object {
val O = "O"
val K = "K"
}
}
fun O() = Nested.O
}
fun box() = Outer().O() + Outer.Nested.K