blob: 5d8d2851ed090e7fdbd306b1b231c90bb917c1ee [file]
// IGNORE_BACKEND: WASM
// WITH_STDLIB
// NO_CHECK_LAMBDA_INLINING
// FILE: 1.kt
package test
inline fun stub() {}
enum class Z {
OK
}
// FILE: 2.kt
import test.*
fun box(): String {
return { enumValueOf<Z>("OK").name } ()
}