Files
kotlin/plugins/annotation-processing/testData/processors/MapMutableMap.kt
2016-10-07 16:28:28 +03:00

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>) {}
}