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