Files
kotlin/compiler/testData/codegen/box/when/noElseExhaustiveUnitExpected.kt
2015-08-10 16:24:12 +03:00

15 lines
133 B
Kotlin
Vendored

enum class En {
A,
B
}
fun box(): String {
val u: Unit = when(En.A) {
En.A -> {}
En.B -> {}
}
return "OK"
}