blob: 878e3ee840a005ab4a42b3768dcde715e2695b47 [file]
// ISSUE: KT-83185
package test
@Repeatable
@Retention(AnnotationRetention.RUNTIME)
annotation class Ann(val x: Int)
@Ann(1)
@Ann(2)
class Some