Files
kotlin-fork/js/js.translator/testFiles/enum/cases/simpleEnum.kt
T
2013-11-05 20:55:49 +04:00

9 lines
82 B
Kotlin

package foo
enum class E {
OK
}
fun box(): String {
return E.OK.name()
}