e54ef3bdb8
Similar to references to error type, this may happen if library A uses an entity from library B annotated with an annotation from C, but A is compiled without C on the classpath.
10 lines
292 B
Kotlin
Vendored
10 lines
292 B
Kotlin
Vendored
package a
|
|
|
|
enum class E { ENTRY }
|
|
|
|
@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION, AnnotationTarget.TYPE_PARAMETER)
|
|
annotation class Anno(val e: E)
|
|
|
|
@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION, AnnotationTarget.TYPE_PARAMETER)
|
|
annotation class Anno2(val e: Array<E>)
|