Files
kotlin-fork/compiler/testData/codegen/boxInline/enum/kt18254.kt
T
2018-10-10 19:35:17 +03:00

18 lines
216 B
Kotlin
Vendored

// FILE: 1.kt
// WITH_RUNTIME
package test
inline fun stub() {}
enum class Z {
OK
}
// FILE: 2.kt
// NO_CHECK_LAMBDA_INLINING
import test.*
fun box(): String {
return { enumValueOf<Z>("OK").name } ()
}