summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/skip_macro_invocations/all_and_name.rs
blob: 1f6722344fe3b99d5747dc711a249ad9eb51427f (plain)
1
2
3
4
5
6
7
8
9
10
11
// rustfmt-skip_macro_invocations: ["*","items"]

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

// Should also skip this invocation, as the wildcard covers it
renamed_items!(
        const _: u8 = 0;
);