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