blob: 055b350994d7b1aef86764acef8551d94859a7d7 [file] [log] [blame]
// "Add non-null asserted (!!) call" "true"
fun <T: Collection<Int>?> foo(c: T) {
for (i in c!!) { }
}