blob: de8260a03e7353736763d5e7f5e191b31a7891ed [file]
// IGNORE_BACKEND_FIR: JVM_IR
enum class A { X1, X2 }
fun box(): String {
when {}
when (A.X1) {}
return "OK"
}