Files
kotlin-fork/j2k/testData/multiFile/AnnotationWithArrayParameter/Some.kt
T
Natalia Selezneva c6882c1ebd Fix testdata in j2k
2018-10-31 13:08:48 +03:00

13 lines
181 B
Kotlin
Vendored

package test
class Some {
@SomeAnnotation(some = ["Foo"], same = [0])
fun foo() {
}
@SomeAnnotation(some = ["Bar", "Buz"], same = [1, 2])
fun bar() {
}
}