blob: d64d3769328f6c67190994b51ae9a6c64bf3f5a2 [file]
import Enum.*
fun use(e: Enum): String =
when (e) {
A -> "A"
B -> "B"
C -> "C"
}