Files
kotlin-fork/nj2k/testData/multiFile/AnnotationWithArrayParameter/Some.kt
T
2019-10-12 12:50:34 +03:00

11 lines
179 B
Kotlin
Vendored

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