Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
enum
/
valueOfNonReified.kt
blob: 05c7081eceee0d598b440f14d704babff1dbe54f [
file
]
// 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
()
}