mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-07 08:31:28 +00:00
10 lines
160 B
Kotlin
Vendored
10 lines
160 B
Kotlin
Vendored
enum class E {
|
|
ENTRY
|
|
}
|
|
|
|
fun box(): String {
|
|
val f = E::valueOf
|
|
val result = f("ENTRY")
|
|
return if (result == E.ENTRY) "OK" else "Fail $result"
|
|
}
|