blob: 652d8d6c197042045fc797b51785af2254f9a206 [file]
// IGNORE_BACKEND: WASM
// WITH_STDLIB
// 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()
}