Add missing enum entry added/removed tests

#KT-6200 fixed
This commit is contained in:
Alexey Tsvetkov
2016-03-04 00:55:43 +03:00
parent 3bbd8979e4
commit 9523a8b88d
23 changed files with 229 additions and 0 deletions
@@ -0,0 +1,7 @@
import Enum.*
fun use(e: Enum): String =
when (e) {
A -> "A"
B -> "B"
}