aeb4abe39d
Fix stub/ast mismatch for compiled named companion objects Add tests
12 lines
137 B
Kotlin
Vendored
12 lines
137 B
Kotlin
Vendored
class C {
|
|
companion object {
|
|
fun foo() {
|
|
}
|
|
}
|
|
}
|
|
|
|
class D {
|
|
companion object Named {
|
|
val c: Int
|
|
}
|
|
} |