Files
kotlin-fork/js/js.translator/testData/box/enum/simpleEnum.kt
T

9 lines
80 B
Kotlin
Vendored

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