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

13 lines
247 B
Kotlin

@Repeatable
public annotation class LocalRepeatable { }
@LocalRepeatable
@LocalRepeatable
@LibRepeatable
@LibRepeatable
@ExplicitContainerRepeatable
@ExplicitContainerRepeatable
@JavaDefinedRepeatable
@JavaDefinedRepeatable
public class User { }