Files
kotlin-fork/compiler/testData/diagnostics/tests/when/AnnotatedWhenStatement.kt
T

10 lines
105 B
Kotlin
Vendored

// FIR_IDENTICAL
fun foo(a: Int) {
@ann
when (a) {
1 -> {}
}
}
annotation class ann