9 lines
80 B
Kotlin
Vendored
9 lines
80 B
Kotlin
Vendored
package foo
|
|
|
|
enum class E {
|
|
OK
|
|
}
|
|
|
|
fun box(): String {
|
|
return E.OK.name
|
|
} |