Files
kotlin-fork/jps/jps-plugin/testData/incremental/withJava/javaUsedInKotlin/enumEntryRemoved/use.kt
T
Alexey Tsvetkov 378aafae69 Add missing enum entry added/removed tests
#KT-6200 fixed

Original commit: 9523a8b88d
2016-03-04 14:43:52 +03:00

8 lines
133 B
Kotlin

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