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

7 lines
125 B
Plaintext

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