blob: ec0c6db4ca477ecc4dacff4ca66e208c1ca92227 [file]
// Two
// WITH_STDLIB
// STDLIB_JDK8
// FULL_JDK
// LIBRARY_PLATFORMS: JVM
import java.lang.annotation.Repeatable as JvmRepeatable
@Repeatable
@JvmRepeatable(TwoContainer::class)
annotation class Two(val name: String)
annotation class TwoContainer(val value: Array<Two>)