blob: d618a1ac3f9b25b7eb3ac1ab950f2412b5e5ebd3 [file] [edit]
// rustfmt-format_macro_bodies: false
macro_rules! foo {
($a: ident : $b: ty) => { $a(42): $b; };
($a: ident $b: ident $c: ident) => { $a=$b+$c; };
}