Files
kotlin/idea/testData/decompiler/decompiledText/ClassWithNamedClassObject/ClassWithNamedClassObject.kt
Pavel V. Talanov aeb4abe39d Fix decompiled text for named companion object
Fix stub/ast mismatch for compiled named companion objects
Add tests
2015-10-19 15:27:49 +03:00

9 lines
113 B
Kotlin
Vendored

package test
class ClassWithNamedClassObject {
companion object Named {
fun a() {
}
}
}