385366384c
Note that the test is an exact copy of an existing test missingDependencyNestedAnnotation, but with -Xuse-ir
7 lines
168 B
Kotlin
Vendored
7 lines
168 B
Kotlin
Vendored
package a
|
|
|
|
interface A {
|
|
@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION, AnnotationTarget.TYPE_PARAMETER)
|
|
annotation class Anno(val value: String)
|
|
}
|