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

7 lines
125 B
Plaintext
Vendored

// "Suppress 'UNUSED_EXPRESSION' for statement " "true"
fun foo() {
val a = 1
@Suppress("UNUSED_EXPRESSION")
a
}