12 lines
185 B
Rust
12 lines
185 B
Rust
|
// rustfmt-skip_macro_invocations: ["*"]
|
||
|
|
||
|
// Should skip this invocation
|
||
|
items!(
|
||
|
const _: u8 = 0;
|
||
|
);
|
||
|
|
||
|
// Should skip this invocation
|
||
|
renamed_items!(
|
||
|
const _: u8 = 0;
|
||
|
);
|