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