blob: a4576bd1b170a3a3bfc9a04dfb0d64cc6bf50cdf [file] [log] [blame]
//@ run-pass
#![allow(dead_code, unused)]
#[repr(u8)]
enum Foo {
Bar = { let x = 1; 3 }
}
pub fn main() {
assert_eq!(3, Foo::Bar as u8);
}