Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
dd4ca2cb43e932606f2630bd1f6f81f9cfb14a2e
/
.
/
compiler
/
testData
/
asJava
/
lightClasses
/
lightClassByFqName
/
AnnotationKotlinAndJavaRepeatable.kt
blob: 0c040fe593859e4d9dedde134d3d24796680269f [
file
] [
log
] [
blame
]
// Two
// WITH_STDLIB
// 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
>)