Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
compiler
/
testData
/
loadJava
/
compiledKotlin
/
annotations
/
RepeatableAnnotation.kt
blob: 878e3ee840a005ab4a42b3768dcde715e2695b47 [
file
]
// ISSUE: KT-83185
package
test
@Repeatable
@Retention
(
AnnotationRetention
.
RUNTIME
)
annotation
class
Ann
(
val x
:
Int
)
@Ann
(
1
)
@Ann
(
2
)
class
Some