rust/tests/target/issue_4675.rs
2021-01-28 22:01:50 -06:00

9 lines
130 B
Rust

macro_rules! foo {
($s:ident ( $p:pat )) => {
Foo {
name: Name::$s($p),
..
}
};
}