blob: 62ab58b6bf3395e853e6e06fa919528ff53ccdb6 [file]
enum class A { X1, X2 }
fun box(): String {
when {}
when (A.X1) {}
return "OK"
}