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

6 lines
112 B
Plaintext
Vendored

// "Change type arguments to <*>" "true"
fun test(a: Any) {
(a as List<*>).bar()
}
fun <T> List<T>.bar() {}