Files
kotlin-fork/plugins/jvm-abi-gen/testData/content/annotation/annotations.kt
T
2021-08-23 18:25:33 +02:00

24 lines
533 B
Kotlin
Vendored

package test
@Retention(AnnotationRetention.SOURCE)
private annotation class A1(val x: Int)
@Retention(AnnotationRetention.BINARY)
private annotation class A2(val x: Int)
@Retention(AnnotationRetention.RUNTIME)
private annotation class A3(val x: Int)
@Retention(AnnotationRetention.SOURCE)
annotation class B1(val x: Int)
@Retention(AnnotationRetention.BINARY)
annotation class B2(val x: Int)
@Retention(AnnotationRetention.RUNTIME)
annotation class B3(val x: Int)
@A1(0) @A2(1) @A3(2) class T1
@B1(0) @B2(1) @B3(2) class T2