blob: 2e4395ccf2277a7faee3c83e757c9e70f79942f9 [file] [log] [blame]
// run-pass
// https://github.com/rust-lang/rust/issues/49181
#[derive(Eq, PartialEq)]
#[repr(i8)]
pub enum A {
B = -1,
C = 1,
}
pub const D: A = A::B;
fn main() {
match A::C {
D => {},
_ => {}
}
}