Files
kotlin-fork/idea/testData/quickfix/expressions/fixNullableIterableWithExclExcl.kt
T
2015-10-28 13:39:49 +03:00

6 lines
130 B
Kotlin
Vendored

// "Add non-null asserted (!!) call" "true"
fun foo() {
val test : Collection<Int>? = null!!
for (i in <caret>test) { }
}