11 lines
248 B
Plaintext
Vendored
11 lines
248 B
Plaintext
Vendored
// "Add remaining branches" "true"
|
|
// ERROR: Unresolved reference: TODO
|
|
// ERROR: Unresolved reference: TODO
|
|
package test
|
|
enum class Color { R, G, B }
|
|
fun test(c: Color) = when(c) {
|
|
Color.B -> 0xff
|
|
Color.R -> TODO()
|
|
Color.G -> TODO()
|
|
}
|