fc447e2d2f
But still resolve them as annotations. Mostly it's needed as begin of migration path, one day they become modifiers anyway Some tests are dropped because they supposed that `annotation` should have parameter
25 lines
385 B
Kotlin
Vendored
25 lines
385 B
Kotlin
Vendored
// FILE: a.kt
|
|
|
|
annotation class annotation
|
|
|
|
// FILE: test/b.kt
|
|
|
|
package test
|
|
|
|
<!NOT_AN_ANNOTATION_CLASS!>test.annotation<!> class annotation
|
|
|
|
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
|
|
|
|
kotlin.annotation.annotation class His
|
|
|
|
My class Our |