ef094e78e3
Change name of quick-fix to more descriptive one
16 lines
221 B
Kotlin
Vendored
16 lines
221 B
Kotlin
Vendored
// "Add remaining branches with * import" "true"
|
|
// WITH_RUNTIME
|
|
import Foo.*
|
|
|
|
enum class Foo {
|
|
A, B, C
|
|
}
|
|
|
|
class Test {
|
|
fun foo(e: Foo) {
|
|
when<caret> (e) {
|
|
A, Foo.B -> TODO()
|
|
}
|
|
}
|
|
}
|