Kapt: Add test on Map<Key, Intf> and MutableMap<Key, Intf>

(cherry picked from commit 59cdbcb)
This commit is contained in:
Yan Zhulanow
2016-09-21 21:21:06 +03:00
committed by Yan Zhulanow
parent 30ed279426
commit a22721fbd8
3 changed files with 29 additions and 1 deletions
@@ -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>) {}
}