blob: 01ecac9879d69c22e93672cf62bae714d40ba3d0 [file] [log] [blame]
// rustfmt-format_macro_matchers: false
macro_rules! foo {
($a: ident : $b: ty) => { $a(42): $b; };
($a: ident $b: ident $c: ident) => { $a=$b+$c; };
}