Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/options/targets/suppress.kt
T

7 lines
89 B
Kotlin
Vendored

// FIR_IDENTICAL
@file:Suppress("abc")
fun foo(): Int {
@Suppress("xyz") return 1
}