
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
16 lines
276 B
Rust
16 lines
276 B
Rust
//@ run-pass
|
|
|
|
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];
|
|
let _v = [0; BAR];
|
|
let _v = [0; BAR2];
|
|
const BAR3:usize = BAR2;
|
|
let _v = [0; BAR3];
|
|
}
|