Files
kotlin-fork/jps/jps-plugin/testData/incremental/withJava/javaUsedInKotlin/enumEntryRemoved/use.kt
T
2022-01-12 15:09:45 +01:00

8 lines
133 B
Kotlin
Vendored

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