Files
kotlin/compiler/testData/codegen/box/callableReference/function/enumValueOfMethod.kt

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"
}