Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
#![allow(dead_code)]
enum E { V, VV(isize) }
static C: E = E::V;
fn f(a: &E) {
match *a {
E::V => {}
E::VV(..) => panic!()
}
pub fn main() {
f(&C)