rust/tests/source/issue_4675.rs

8 lines
125 B
Rust
Raw Normal View History

2021-01-28 19:13:48 -06:00
macro_rules! foo {
($s:ident ( $p:pat )) => {
Foo {
name: Name::$s($p),
..
}
};
}