Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
nj2k
/
testData
/
newJ2k
/
annotations
/
annotationInterface4.kt
blob: 205546bda3395257eae2d07777ecc467c43d57b2 [
file
] [
log
] [
blame
]
internal
annotation
class
Anon
(
vararg val value
:
String
,
val x
:
Int
=
1
)
@Anon
(
"a"
,
"b"
)
internal
interface
I1
@Anon
(
"c"
,
"d"
,
x
=
1
)
internal
interface
I2
@Anon
(
"c"
,
"d"
,
x
=
1
)
internal
interface
I3
@Anon
(
value
=
[
"c"
,
"d"
])
internal
interface
I4