blob: a159ff0d1e32d626ddc7c23264eed8215cae1afe [file]
// "Change type arguments to <*>" "true"
fun test(a: Any) {
foo(a as List<Boolean><caret>)
}
fun <T> foo(list: List<T>) {}