summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/format_macro_matchers/true.rs
blob: fa0442e228ac8ef91ef90f493d5527f2f404788e (plain)
1
2
3
4
5
6
// rustfmt-format_macro_matchers: true

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