blob: 7d9b1cb062b36c5a20bbf56b7f6085a85beb5ab2 [file]
// FIR_IDENTICAL
// B.Companion and B.C are serialized in a different order in K1 and K2
object A {
fun a() {}
}
class B {
companion object {
fun b() {}
}
object C {
fun c() {}
}
}
class D {
companion object E {
fun e() {}
}
}