0fcb51f0a2
#KT-1478 Fixed
6 lines
130 B
Kotlin
Vendored
6 lines
130 B
Kotlin
Vendored
// "Add non-null asserted (!!) call" "true"
|
|
fun foo() {
|
|
val test : Collection<Int>? = null!!
|
|
for (i in <caret>test) { }
|
|
}
|