Files
kotlin-fork/j2k/testData/multiFile/AnnotationWithArrayParameter/Some.kt
T
Simon Ogorodnik 4710f709ce Fix for KT-10545
//TODO unfix: see KT-14305
2016-10-12 18:10:55 +03:00

13 lines
215 B
Kotlin
Vendored

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