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

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