Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/repeatable/javaRepeatableInKotlin.kt
T
2023-01-17 06:26:38 +00:00

14 lines
371 B
Kotlin
Vendored

// FIR_IDENTICAL
// FULL_JDK
// !LANGUAGE: +RepeatableAnnotations
//import java.lang.annotation.*
typealias Rep = java.lang.annotation.Repeatable
<!REPEATABLE_CONTAINER_MUST_HAVE_VALUE_ARRAY_ERROR!>@Rep(RepeatableAnnotationContainer::class)<!>
annotation class RepeatableAnnotation
annotation class RepeatableAnnotationContainer
@RepeatableAnnotation class Annotated