I believe the following program should be rejected, but it is accepted (and panics) now. ``` rust const C: i32 = 0; fn main() { if let C(..) = 0 { panic!(); } } ```