mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
8 lines
96 B
Kotlin
Vendored
8 lines
96 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
enum class State {
|
|
O,
|
|
K
|
|
}
|
|
|
|
fun box() = "${State.O}${State.K}"
|