Files
kotlin-fork/compiler/testData/klib/partial-linkage/removeEnumEntry/lib2/l2.kt
T
2023-08-16 19:11:34 +00:00

6 lines
119 B
Kotlin
Vendored

fun compute(e: E): String = when (e) {
E.UNCHANGED1 -> "OK"
E.REMOVED -> "FAIL1"
E.UNCHANGED2 -> "FAIL2"
}