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

6 lines
72 B
Kotlin
Vendored

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