4710f709ce
//TODO unfix: see KT-14305
13 lines
215 B
Kotlin
Vendored
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() {
|
|
|
|
}
|
|
} |