Files
kotlin-fork/plugins/annotation-processing/testData/kotlinWrappers/repeatableAnnotations.kt
T
Yan Zhulanow 927280f7ce Kapt: add some JeElement tests
(cherry picked from commit 948a4b6)
2016-08-29 16:31:16 +03:00

8 lines
105 B
Kotlin
Vendored

// MyClass
@Repeatable
annotation class Anno(val name: String)
@Anno("Mary")
@Anno("Tom")
class MyClass