24 lines
265 B
Kotlin
Vendored
24 lines
265 B
Kotlin
Vendored
// FILE: annotation.kt
|
|
|
|
package test
|
|
|
|
@Target(AnnotationTarget.FILE) annotation class special
|
|
|
|
annotation class common
|
|
|
|
// FILE: other.kt
|
|
|
|
@file:special
|
|
|
|
package test
|
|
|
|
@special class Incorrect
|
|
|
|
// FILE: another.kt
|
|
|
|
@file:common
|
|
|
|
package test
|
|
|
|
@common class Correct
|