summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/configs/format_macro_bodies/false.rs
blob: d618a1ac3f9b25b7eb3ac1ab950f2412b5e5ebd3 (plain)
1
2
3
4
5
6
7
// rustfmt-format_macro_bodies: false

macro_rules! foo {
    ($a: ident : $b: ty) => { $a(42): $b; };
    ($a: ident $b: ident $c: ident) => { $a=$b+$c; };
}