Files
kotlin-fork/idea/testData/quickfix/suppress/forStatement/annotatedExpr.kt.after
T
2015-09-07 13:42:26 +03:00

9 lines
211 B
Plaintext
Vendored

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