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