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

7 lines
185 B
Plaintext
Vendored

// "Suppress 'UNNECESSARY_NOT_NULL_ASSERTION' for statement " "true"
// WITH_RUNTIME
fun foo(): Any {
@Suppress("UNNECESSARY_NOT_NULL_ASSERTION")
throw Exception(""<caret>!!)
}