11 lines
239 B
Kotlin
Vendored
11 lines
239 B
Kotlin
Vendored
class Test {
|
|
@`InnerAnnotation` @InnerAnnotation
|
|
companion object : StaticClass(), <!UNRESOLVED_REFERENCE!>InnerClass<!>() {
|
|
|
|
}
|
|
|
|
annotation class InnerAnnotation
|
|
open class StaticClass
|
|
|
|
open inner class InnerClass
|
|
} |