mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
Simplify code handling access flag computation Fix a problem where kotlin nested object wasn't producing a nested light class
15 lines
145 B
Kotlin
Vendored
15 lines
145 B
Kotlin
Vendored
// A
|
|
|
|
class A {
|
|
class B {
|
|
object I
|
|
|
|
object II
|
|
}
|
|
|
|
object C {
|
|
object D {
|
|
object G
|
|
}
|
|
}
|
|
} |