mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
8 lines
164 B
Kotlin
Vendored
8 lines
164 B
Kotlin
Vendored
// EA-68871: empty when condition
|
|
fun foo(arg: Int): Int {
|
|
when (arg) {
|
|
0 -> return 0
|
|
<!SYNTAX!><!>-> return 4
|
|
else -> return -1
|
|
}
|
|
} |