Files
kotlin-fork/idea/testData/quickfix/addStarProjections/cast/extensionReceiver.kt
T
2019-03-20 20:12:06 +07:00

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() {}