mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
18 lines
302 B
Rust
18 lines
302 B
Rust
// run-pass
|
|
#![allow(unused_variables)]
|
|
// aux-build:issue-19340-1.rs
|
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
extern crate issue_19340_1 as lib;
|
|
|
|
use lib::Homura;
|
|
|
|
fn main() {
|
|
let homura = Homura::Madoka { name: "Kaname".to_string() };
|
|
|
|
match homura {
|
|
Homura::Madoka { name } => (),
|
|
};
|
|
}
|