Files
kotlin-fork/idea/testData/quickfix/addStarProjections/cast/valueArgument5.kt
T
2019-03-20 20:12:06 +07:00

6 lines
135 B
Kotlin
Vendored

// "Change type arguments to <*, *>" "true"
fun test(a: Any) {
foo(a as Map<Int, Boolean><caret>)
}
fun <T> foo(map: Map<T, *>) {}