rust/tests/ui/structs-enums/enum-vec-initializer.rs

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

18 lines
307 B
Rust
Raw Normal View History

// run-pass
// pretty-expanded FIXME #23616
enum Flopsy {
Bunny = 2
}
const BAR:usize = Flopsy::Bunny as usize;
const BAR2:usize = BAR;
pub fn main() {
let _v = [0; Flopsy::Bunny as usize];
2015-01-25 15:05:03 -06:00
let _v = [0; BAR];
let _v = [0; BAR2];
const BAR3:usize = BAR2;
2015-01-25 15:05:03 -06:00
let _v = [0; BAR3];
2013-08-17 10:37:42 -05:00
}