blob: 8f04def8148f54161e4234dfa0c84fb697ea3535 [file] [log] [blame]
// "Add non-null asserted (!!) call" "true"
fun foo() {
val test : Collection<Int>? = null!!
for (i in <caret>test!!) { }
}