mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
10 lines
366 B
Kotlin
Vendored
10 lines
366 B
Kotlin
Vendored
import java.lang.annotation.Repeatable
|
|
|
|
<!DEPRECATED_JAVA_ANNOTATION!>@java.lang.annotation.Repeatable(Annotations::class)<!> annotation class RepAnn
|
|
|
|
<!DEPRECATED_JAVA_ANNOTATION!>@Repeatable(OtherAnnotations::class)<!> annotation class OtherAnn
|
|
|
|
annotation class Annotations(vararg val value: RepAnn)
|
|
|
|
annotation class OtherAnnotations(vararg val value: OtherAnn)
|