Files
kotlin-fork/backend.native/tests/external/codegen/boxInline/enum/valueOfNonReified.kt
T
2017-03-13 15:31:46 +03:00

21 lines
218 B
Kotlin

// FILE: 1.kt
// WITH_RUNTIME
package test
inline fun myValueOf(): String {
return enumValueOf<Z>("OK").name
}
enum class Z {
OK
}
// FILE: 2.kt
import test.*
fun box(): String {
return myValueOf()
}