6 lines
165 B
Kotlin
Vendored
6 lines
165 B
Kotlin
Vendored
// Two
|
|
// FULL_JDK
|
|
|
|
@java.lang.annotation.Repeatable(TwoContainer::class)
|
|
annotation class Two(val name: String)
|
|
annotation class TwoContainer(val value: Array<Two>) |