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

10 lines
250 B
Plaintext
Vendored

// "Suppress 'UNNECESSARY_NOT_NULL_ASSERTION' for statement " "true"
fun foo() {
@Suppress("UNNECESSARY_NOT_NULL_ASSERTION")
@ann ""<caret>!!
}
@Target(AnnotationTarget.EXPRESSION)
@Retention(AnnotationRetention.SOURCE)
annotation class ann