summaryrefslogtreecommitdiff
path: root/src/tools/rustfmt/tests/target/configs/format_macro_matchers/false.rs
blob: 3966d21be7563b824946d0026d3756f3abf0e54d (plain)
1
2
3
4
5
6
7
8
9
10
// rustfmt-format_macro_matchers: false

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