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