mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-16 21:15:18 +03:00
8 lines
125 B
Rust
8 lines
125 B
Rust
macro_rules! foo {
|
|
($s:ident ( $p:pat )) => {
|
|
Foo {
|
|
name: Name::$s($p),
|
|
..
|
|
}
|
|
};
|
|
} |