summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/skip_macro_invocations/name.rs
blob: c4d577269c6f0a2e82195806779bc1424cc4cf3b (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 not skip this invocation
renamed_items!(
    const _: u8 = 0;
);