4e3d13fcee
#KT-23259 Fixed
8 lines
181 B
Kotlin
Vendored
8 lines
181 B
Kotlin
Vendored
// "Change type arguments to <*>" "false"
|
|
// ACTION: Convert to run
|
|
// ACTION: Convert to with
|
|
fun test(a: Any) {
|
|
(a as List<Boolean><caret>).bar()
|
|
}
|
|
|
|
fun List<Boolean>.bar() {} |