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

7 lines
175 B
Kotlin
Vendored

// "Change type arguments to <*, *>" "false"
// ACTION: Add 'map =' to argument
fun test(a: Any) {
foo(a as Map<Int, Boolean><caret>)
}
fun foo(map: Map<Int, Boolean>) {}