rust/tests/ui/structs-enums/enum-vec-initializer.rs
许杰友 Jieyou Xu (Joe) 95ff642797 tests: remove //@ pretty-expanded usages
Done with

```bash
sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs
```

and

```
sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs
```
2024-11-26 02:50:48 +08:00

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];
}