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

11 lines
145 B
Kotlin
Vendored

@Name("Mary")
@Age(18)
class Mary
@Name("Kate")
@Age(22)
class Kate
annotation class Name(val name: String)
annotation class Age(val age: Int)