Files
kotlin-fork/native/native.tests/testData/klibContents/builtinsSerializer/nestedClassesAndObjects.txt
T
Ivan Kylchik 8499891756 [K2] Properly serialize constant values
#KT-56190 Fixed
2023-04-07 18:07:10 +00:00

27 lines
693 B
Plaintext
Vendored

class ClassA constructor() {
class classB constructor() {
fun memberFromB(): Int
class BC constructor() {
val memberFromBB: Int = 150
}
object BO {
val memberFromBO: Int = 175
}
}
inner class classC constructor() {
val memberFromC: Int = 200
}
}
class E constructor() {
companion object {
val stat: Int = 250
class D constructor() {
val memberFromD: Int = 275
}
}
}
class F constructor() {
object ObjA {
val memberFromObjA: Int = 300
}
}