In this simple program: ``` enum expr { a, b, c, d } fn foo(e: expr) { alt e { a {} b {} c {} } } fn main() { } ``` I get `missing-case.rs:6:4: 10:5 error: non-exhaustive patterns` but I do not get any indication what that missing case might be.