Files
kotlin-fork/compiler/testData/codegen/box/when/noElseExhaustiveStatement.kt
T
2018-07-23 15:08:18 +03:00

12 lines
134 B
Kotlin
Vendored

enum class En {
A,
B
}
fun box(): String {
when(En.A) {
En.A -> "s1"
En.B -> "s2"
}
return "OK"
}