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

7 lines
126 B
Kotlin

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