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