Files
kotlin-fork/idea/testData/quickfix/suppress/forStatement/annotatedExprWithSuppress.kt.after
T
2015-09-04 17:23:25 +03:00

7 lines
172 B
Plaintext
Vendored

// "Suppress 'UNNECESSARY_NOT_NULL_ASSERTION' for statement " "true"
fun foo() {
@Suppress("Foo", "UNNECESSARY_NOT_NULL_ASSERTION") ""<caret>!!
}
annotation class ann