rust/tests/target/skip_macro_invocations/name.rs

12 lines
189 B
Rust
Raw Normal View History

// rustfmt-skip_macro_invocations: ["items"]
// Should skip this invocation
items!(
const _: u8 = 0;
);
// Should not skip this invocation
renamed_items!(
const _: u8 = 0;
);