Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
161333d3e7d13dd98386fe346a71a07eadfe4756
/
.
/
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