238340a143
(cherry picked from commit 1677984)
9 lines
152 B
Kotlin
Vendored
9 lines
152 B
Kotlin
Vendored
// FQNAME: MyClass
|
|
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
@Repeatable
|
|
annotation class Anno(val name: String)
|
|
|
|
@Anno("Mary")
|
|
@Anno("Tom")
|
|
class MyClass |