Files
codeql/java/ql/integration-tests/all-platforms/kotlin/repeatable-annotations/lib.kt
2022-12-09 10:33:03 +00:00

8 lines
254 B
Kotlin

@Repeatable
public annotation class LibRepeatable { }
annotation class KtDefinedContainer(val value: Array<ExplicitContainerRepeatable>) { }
@java.lang.annotation.Repeatable(KtDefinedContainer::class)
annotation class ExplicitContainerRepeatable() { }