8 lines
159 B
Rust
Raw Normal View History

2018-08-01 10:41:16 +12:00
// rustfmt-format_macro_bodies: true
macro_rules! foo {
($a: ident : $b: ty) => { $a(42): $b; };
($a: ident $b: ident $c: ident) => { $a=$b+$c; };
}