summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/quickfix/when/addRemainingBranchesEnumImport1.kt
blob: 91629ae019d2429b8299b9b948e9a4ad07de7422 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// "Add remaining branches with * import" "true"
// WITH_RUNTIME
enum class Foo {
    A, B, C
}

class Test {
    fun foo(e: Foo) {
        when<caret> (e) {
        }
    }
}
/* IGNORE_FIR */