mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
12 lines
210 B
Kotlin
Vendored
12 lines
210 B
Kotlin
Vendored
annotation class Anno
|
|
|
|
interface Intf
|
|
|
|
@Anno
|
|
class Test {
|
|
fun a(map: Map<Int, Intf>) {}
|
|
fun b(map: MutableMap<Int, Intf>) {}
|
|
|
|
fun c(map: Map<Int, Test>) {}
|
|
fun d(map: MutableMap<Int, Test>) {}
|
|
} |