a072550931
JetClassOrObject.isAnnotation() is no more in use during resolve. Additional test.
26 lines
416 B
Kotlin
Vendored
26 lines
416 B
Kotlin
Vendored
// FILE: a.kt
|
|
|
|
<!NOT_AN_ANNOTATION_CLASS!>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
|