rust/tests/ui/consts/const-block-non-item-statement-rpass.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
148 B
Rust
Raw Normal View History

// 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);
}