blob: 58fbad659dbf0f9ac00c2cb1fe6194d45bf2420d [file]
enum class A { X1, X2 }
fun box(): String {
when {}
when (A.X1) { else -> {} }
return "OK"
}