7f627ab480
These are mostly mechanical changes.
23 lines
253 B
Kotlin
Vendored
23 lines
253 B
Kotlin
Vendored
@Test
|
|
class A
|
|
|
|
annotation class MyAnnotation(val text: String)
|
|
|
|
@MyAnnotation("class")
|
|
class B {
|
|
|
|
@MyAnnotation("inB class")
|
|
class InB {
|
|
|
|
}
|
|
|
|
@MyAnnotation("companion")
|
|
companion object {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@MyAnnotation("object")
|
|
object Obj
|