]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/source/skip_macro_invocations/name.rs
Rollup merge of #107244 - notriddle:notriddle/primitive-reference-link, r=GuillaumeGomez
[rust.git] / src / tools / rustfmt / tests / source / skip_macro_invocations / name.rs
1 // rustfmt-skip_macro_invocations: ["items"]
2
3 // Should skip this invocation
4 items!(
5         const _: u8 = 0;
6 );
7
8 // Should not skip this invocation
9 renamed_items!(
10         const _: u8 = 0;
11 );