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