Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
nj2k
/
testData
/
newJ2k
/
annotations
/
annotationInterface4.java
blob: 87232b6dd4ded7b3c5eaa4098dda71c475238f28 [
file
] [
log
] [
blame
]
@interface
Anon
{
String
[]
value
();
int
x
()
default
1
;
}
@Anon
(
"a"
,
"b"
)
interface
I1
{
}
@Anon
(
"c"
,
"d"
,
x
=
1
)
interface
I2
{
}
@Anon
({
"c"
,
"d"
},
x
=
1
)
interface
I3
{
}
@Anon
(
value
=
{
"c"
,
"d"
})
interface
I4
{
}