10 lines
179 B
Kotlin
Vendored
10 lines
179 B
Kotlin
Vendored
class Test {
|
|
@ClassObjectAnnotation
|
|
@NestedAnnotation
|
|
companion object {
|
|
annotation class ClassObjectAnnotation
|
|
}
|
|
|
|
annotation class NestedAnnotation
|
|
}
|