Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fcbc6b84598bef4d4ca95c593070c2a5cba1da35
/
.
/
compiler
/
testData
/
asJava
/
lightClasses
/
AnnotationKotlinAndJavaRepeatable.kt
blob: 996c9ea6dc24f92ee08c9fc85aa5fe18b3041d75 [
file
]
// Two
// STDLIB_JDK8
// FULL_JDK
import
java
.
lang
.
annotation
.
Repeatable
as
JvmRepeatable
@Repeatable
@JvmRepeatable
(
TwoContainer
::
class
)
annotation
class
Two
(
val name
:
String
)
annotation
class
TwoContainer
(
val value
:
Array
<
Two
>)