Files
kotlin-fork/idea/testData/quickfix/when/addRemainingBranchesEnumImport1.kt.after
T

18 lines
260 B
Plaintext
Vendored

import Foo.*
// "Add remaining branches with import" "true"
// WITH_RUNTIME
enum class Foo {
A, B, C
}
class Test {
fun foo(e: Foo) {
when<caret> (e) {
A -> TODO()
B -> TODO()
C -> TODO()
}
}
}