927280f7ce
(cherry picked from commit 948a4b6)
11 lines
145 B
Kotlin
Vendored
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) |