Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ebcc2cc3b207156c1c0e90e5107aa356b8fa8d72
/
.
/
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
()
}