mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
19 lines
272 B
Kotlin
Vendored
19 lines
272 B
Kotlin
Vendored
// FILE: a.kt
|
|
|
|
annotation class annotation
|
|
|
|
// FILE: test/b.kt
|
|
|
|
package test
|
|
|
|
<!NOT_AN_ANNOTATION_CLASS!>@test.annotation<!> class annotation
|
|
|
|
// FILE: other/c.kt
|
|
|
|
package other
|
|
|
|
annotation class My
|
|
|
|
<!NOT_AN_ANNOTATION_CLASS!>@test.annotation<!> class Your
|
|
|
|
@My class Our |