adfa8c788c
Using "JVM_1_8" always resulted in incorrect mapping of Kotlin annotation targets to Java element types. The change in AbstractKotlinRenderLogTest is needed because while CliTraceHolder.module is technically a descriptor leak, it was never detected by this test accidentally, because of the depth cutoff equal to 10, which started to not be enough after the minor refactoring of replacing `Delegates.notNull` with `lateinit`.
10 lines
275 B
Kotlin
Vendored
10 lines
275 B
Kotlin
Vendored
// CHECK_BY_JAVA_FILE
|
|
// JVM_TARGET: 1.6
|
|
|
|
@Target()
|
|
annotation class A0
|
|
@Target(AnnotationTarget.VALUE_PARAMETER, AnnotationTarget.TYPE)
|
|
annotation class A1
|
|
@Target(AnnotationTarget.VALUE_PARAMETER, AnnotationTarget.TYPE, AnnotationTarget.TYPE_PARAMETER)
|
|
annotation class A2
|