summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/intentions/addWhenRemainingBranches/emptyWhen.kt
blob: 999150014517ade501fe403892e52ccf1148e455 (plain)
1
2
3
4
5
6
7
8
9
10
11
// WITH_RUNTIME

enum class Entry {
    FOO, BAR, BAZ
}

fun test(e: Entry) {
    when (e) {
        <caret>
    }
}