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

9 lines
181 B
Kotlin
Vendored

// FIR_IDENTICAL
// EA-68871: empty when condition
fun foo(arg: Int): Int {
when (arg) {
0 -> return 0
<!SYNTAX!><!>-> return 4
else -> return -1
}
}