• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 );
12