Files
kotlin-fork/compiler/testData/loadKotlin/annotations/parameters/ManyAnnotations.kt
T
2013-10-22 23:08:33 +04:00

11 lines
182 B
Kotlin

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) {}