Files
kotlin-fork/compiler/testData/codegen/boxInline/enum/kt18254.kt
T
2021-02-02 17:53:52 +03:00

18 lines
216 B
Kotlin
Vendored

// WITH_RUNTIME
// 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 } ()
}