Files
kotlin/compiler/testData/asJava/lightClasses/NestedObjects.kt
Pavel V. Talanov d34b73befb Light class codegen: all objects are considered static
Simplify code handling access flag computation
Fix a problem where kotlin nested object wasn't producing a nested light class
2017-03-15 20:55:01 +03:00

15 lines
145 B
Kotlin
Vendored

// A
class A {
class B {
object I
object II
}
object C {
object D {
object G
}
}
}