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