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

6 lines
132 B
Plaintext
Vendored

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