Files
kotlin/compiler/testData/codegen/boxInline/enum/valueOfNonReified.kt
2018-10-10 19:35:17 +03:00

21 lines
218 B
Kotlin
Vendored

// 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()
}