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

7 lines
89 B
Kotlin
Vendored

// FIR_IDENTICAL
fun foo(x: Int) {
when (x) {
2 -> {}
3 -> {}
}
}