Files
kotlin-fork/plugins/annotation-processing/testData/wrappers/kotlinWrappers/repeatableAnnotations.kt
T
Yan Zhulanow 238340a143 Kapt: Simplify wrapper tests
(cherry picked from commit 1677984)
2016-10-07 16:28:25 +03:00

9 lines
152 B
Kotlin
Vendored

// FQNAME: MyClass
@Retention(AnnotationRetention.SOURCE)
@Repeatable
annotation class Anno(val name: String)
@Anno("Mary")
@Anno("Tom")
class MyClass