mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 08:31:38 +00:00
25 lines
491 B
Kotlin
Vendored
25 lines
491 B
Kotlin
Vendored
// FILE: a.kt
|
|
|
|
annotation class annotation
|
|
|
|
// FILE: test/b.kt
|
|
|
|
package test
|
|
|
|
<!NOT_AN_ANNOTATION_CLASS!>@test.annotation<!> class annotation
|
|
|
|
<!DEPRECATED_ANNOTATION_THAT_BECOMES_MODIFIER!>@kotlin.annotation.annotation<!> class realAnnotation
|
|
|
|
@realAnnotation class My
|
|
|
|
// FILE: other/c.kt
|
|
|
|
package other
|
|
|
|
annotation class My
|
|
|
|
<!NOT_AN_ANNOTATION_CLASS!>@test.annotation<!> class Your
|
|
|
|
<!DEPRECATED_ANNOTATION_THAT_BECOMES_MODIFIER!>@kotlin.annotation.annotation<!> class His
|
|
|
|
@My class Our |