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

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