a22721fbd8
(cherry picked from commit 59cdbcb)
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>) {}
|
|
} |