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

6 lines
169 B
Plaintext

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