efa3bf9c69
I found these tests only _after_ the previous changes, so I needed to merge and/or remove redundant tests.
6 lines
113 B
Kotlin
Vendored
6 lines
113 B
Kotlin
Vendored
// "Add non-null asserted (!!) call" "true"
|
|
fun <T: Collection<Int>?> foo(c: T) {
|
|
for (i in <caret>c) { }
|
|
}
|
|
|