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