mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
8 lines
91 B
Kotlin
Vendored
8 lines
91 B
Kotlin
Vendored
// IGNORE_BACKEND: JS_IR
|
|
enum class State {
|
|
O,
|
|
K
|
|
}
|
|
|
|
fun box() = "${State.O}${State.K}"
|