mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
25 lines
361 B
Rust
25 lines
361 B
Rust
// run-pass
|
|
#![allow(unused_variables)]
|
|
// pretty-expanded FIXME #23616
|
|
|
|
enum Homura {
|
|
Madoka {
|
|
name: String,
|
|
age: u32,
|
|
},
|
|
}
|
|
|
|
fn main() {
|
|
let homura = Homura::Madoka {
|
|
name: "Akemi".to_string(),
|
|
age: 14,
|
|
};
|
|
|
|
match homura {
|
|
Homura::Madoka {
|
|
name,
|
|
age,
|
|
} => (),
|
|
};
|
|
}
|