4e3d13fcee
#KT-23259 Fixed
6 lines
134 B
Kotlin
Vendored
6 lines
134 B
Kotlin
Vendored
// "Change type arguments to <*, *>" "true"
|
|
fun test(a: Any) {
|
|
(a as Map<Int, Boolean><caret>).bar()
|
|
}
|
|
|
|
fun <T> Map<T, *>.bar() {} |