summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/skip_macro_invocations/names.rs
blob: c6b41ff93d79dea68e22697b779bb92f2e1a57b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// rustfmt-skip_macro_invocations: ["foo","bar"]

// Should skip this invocation
foo!(
        const _: u8 = 0;
);

// Should skip this invocation
bar!(
        const _: u8 = 0;
);

// Should not skip this invocation
baz!(
    const _: u8 = 0;
);