Files
kotlin/compiler/testData/codegen/box/enum/toString.kt
2019-11-19 11:00:09 +03:00

8 lines
96 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
enum class State {
O,
K
}
fun box() = "${State.O}${State.K}"