Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
enum
/
valueOfNonReified.kt
blob: 761813faec257d569e7ef2445abd1b09fb410286 [
file
]
// FILE: 1.kt
// WITH_RUNTIME
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
()
}