Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e1e07d20949869a38f2fc0b6ceeea1235721f07f
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
enum
/
valueOfNonReified.kt
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
()
}