Files
kotlin/compiler/testData/loadJava/compiledKotlin/annotations/parameters/ManyAnnotations.kt
2015-06-12 09:23:31 +03:00

11 lines
186 B
Kotlin
Vendored

package test
annotation class A
annotation class B
annotation class C
annotation class D
fun foo(@[A B] x: Int, @[A C] y: Double, @[B C D] z: String) {}
fun bar(@[A B C D] x: Int) {}