8 lines
125 B
Rust
8 lines
125 B
Rust
|
macro_rules! foo {
|
||
|
($s:ident ( $p:pat )) => {
|
||
|
Foo {
|
||
|
name: Name::$s($p),
|
||
|
..
|
||
|
}
|
||
|
};
|
||
|
}
|