Files
kotlin-fork/compiler/testData/diagnostics/tests/when/NoElseExpectedUnit.kt
T
2013-09-13 22:04:46 +02:00

7 lines
99 B
Kotlin

fun foo(x: Int) {
val y: Unit = when (x) {
2 -> {}
3 -> {}
}
return y
}