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