Files
kotlin/compiler/testData/codegen/boxWithStdlib/callableReference/function/enumValueOfMethod.kt
Alexander Udalov cd0551078c Support static method references
#KT-5123 Fixed
2014-09-26 18:48:43 +04:00

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