Files
kotlin-fork/compiler/testData/codegen/boxInline/enum/valueOfNonReified.kt
T
2021-02-02 17:53:52 +03:00

21 lines
218 B
Kotlin
Vendored

// WITH_RUNTIME
// FILE: 1.kt
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()
}