Files
kotlin-fork/compiler/testData/codegen/box/enum/toString.kt
T
2018-07-23 15:08:18 +03:00

7 lines
66 B
Kotlin
Vendored

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