rust/tests/ui/structs-enums/enum-variants.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

18 lines
435 B
Rust

//@ run-pass
#![allow(dead_code)]
#![allow(unused_assignments)]
#![allow(unused_variables)]
enum Animal {
Dog (String, f64),
Cat { name: String, weight: f64 }
}
pub fn main() {
let mut a: Animal = Animal::Dog("Cocoa".to_string(), 37.2);
a = Animal::Cat{ name: "Spotty".to_string(), weight: 2.7 };
// permuting the fields should work too
let _c = Animal::Cat { weight: 3.1, name: "Spreckles".to_string() };
}