4e3d13fcee
#KT-23259 Fixed
7 lines
175 B
Kotlin
Vendored
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>) {} |