blob: 6d57104afeeb8ff3be19944287afcb34d51c3058 [file]
// IGNORE_BACKEND_FIR: JVM_IR
class Outer {
class Nested {
companion object {
val O = "O"
val K = "K"
}
}
fun O() = Nested.O
}
fun box() = Outer().O() + Outer.Nested.K