mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
11 lines
186 B
Kotlin
Vendored
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) {}
|