Files
kotlin/compiler/testData/codegen/boxInline/enum/valuesNonReified.kt

23 lines
274 B
Kotlin
Vendored

// FILE: 1.kt
// WITH_RUNTIME
// KJS_WITH_FULL_RUNTIME
package test
inline fun myValues(): String {
val values = enumValues<Z>()
return values.joinToString("")
}
enum class Z {
O, K
}
// FILE: 2.kt
import test.*
fun box(): String {
return myValues()
}