blob: 6c5cc283db792ffa1e0b4f70f230b7954a5c6ddd [file] [log] [blame]
// "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()
}