12 lines
180 B
Plaintext
Vendored
12 lines
180 B
Plaintext
Vendored
// "Add else branch" "true"
|
|
enum class Color { R, G, B }
|
|
fun use(c: Color) {
|
|
when (c) {
|
|
Color.R -> red()
|
|
else -> <caret>
|
|
}
|
|
}
|
|
|
|
fun red() {}
|
|
/* IGNORE_FIR */
|