ef094e78e3
Change name of quick-fix to more descriptive one
16 lines
268 B
Kotlin
Vendored
16 lines
268 B
Kotlin
Vendored
// "Add remaining branches with * import" "true"
|
|
|
|
package u
|
|
|
|
import e.OwnEnum
|
|
import e.OwnEnum.*
|
|
import e.getOwnEnum
|
|
|
|
fun mainContext() {
|
|
val ownLocal = getOwnEnum()
|
|
when (ownLocal) {
|
|
RED -> TODO()
|
|
GREEN -> TODO()
|
|
BLUE -> TODO()
|
|
}
|
|
} |