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