Files
kotlin-fork/compiler/testData/codegen/enum/toString.kt
T
2012-08-13 22:37:27 +03:00

7 lines
65 B
Kotlin

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