aeb4abe39d
Fix stub/ast mismatch for compiled named companion objects Add tests
9 lines
113 B
Kotlin
Vendored
9 lines
113 B
Kotlin
Vendored
package test
|
|
|
|
class ClassWithNamedClassObject {
|
|
companion object Named {
|
|
fun a() {
|
|
}
|
|
}
|
|
}
|