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