mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
8 lines
94 B
Kotlin
Vendored
8 lines
94 B
Kotlin
Vendored
enum class A { X1, X2 }
|
|
|
|
fun box(): String {
|
|
when {}
|
|
when (A.X1) {}
|
|
return "OK"
|
|
}
|