blob: e02125f19c8eefef3834555716a392fc92eaec62 [file]
enum class En {
A,
B
}
fun box(): String = when(En.A) {
En.A -> "OK"
En.B -> "Fail 1"
}