]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/skip_macro_invocations/all_and_name.rs
Auto merge of #103019 - Kobzol:ci-multistage-python, r=Mark-Simulacrum
[rust.git] / src / tools / rustfmt / tests / target / skip_macro_invocations / all_and_name.rs
1 // rustfmt-skip_macro_invocations: ["*","items"]
2
3 // Should skip this invocation
4 items!(
5         const _: u8 = 0;
6 );
7
8 // Should also skip this invocation, as the wildcard covers it
9 renamed_items!(
10         const _: u8 = 0;
11 );