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