mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
11 lines
182 B
Kotlin
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) {}
|