Files
kotlin-fork/idea/testData/quickfix/suppress/forStatement/for.kt.after
T

9 lines
224 B
Plaintext
Vendored

// "Suppress 'UNNECESSARY_NOT_NULL_ASSERTION' for statement " "true"
// WITH_RUNTIME
fun foo() {
@Suppress("UNNECESSARY_NOT_NULL_ASSERTION")
for (i in list()<caret>!!) {}
}
fun list(): List<Int> = throw Exception()