Files
kotlin-fork/idea/testData/intentions/addWhenRemainingBranches/simple.kt
T

12 lines
150 B
Kotlin
Vendored

// WITH_RUNTIME
enum class Entry {
FOO, BAR, BAZ
}
fun test(e: Entry) {
<caret>when (e) {
Entry.FOO -> {}
else -> {}
}
}