4e3d13fcee
#KT-23259 Fixed
7 lines
168 B
Kotlin
Vendored
7 lines
168 B
Kotlin
Vendored
// "Change type arguments to <*>" "false"
|
|
// ACTION: Add 'list =' to argument
|
|
fun test(a: Any) {
|
|
foo(a as? List<Boolean><caret>)
|
|
}
|
|
|
|
fun foo(list: List<Boolean>?) {} |