Kapt: Add test on Map<Key, Intf> and MutableMap<Key, Intf>
(cherry picked from commit 59cdbcb)
This commit is contained in:
committed by
Yan Zhulanow
parent
30ed279426
commit
a22721fbd8
@@ -0,0 +1,12 @@
|
||||
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>) {}
|
||||
}
|
||||
Reference in New Issue
Block a user