Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
a3b14561c4d5f2ab5a7edc53fca7d3c891589f2c
/
.
/
nj2k
/
testData
/
multiFile
/
AnnotationWithArrayParameter
/
Some.java
blob: a738d97a5ddd50d912689feb059a59b060e8b87a [
file
] [
log
] [
blame
]
package
test
;
public
class
Some
{
@SomeAnnotation
(
some
=
"Foo"
,
same
=
0
)
public
void
foo
()
{
}
@SomeAnnotation
(
some
=
{
"Bar"
,
"Buz"
},
same
=
{
1
,
2
})
public
void
bar
()
{
}
}