cargo/crates/rustfix/tests/everything/dedup-suggestions.fixed.rs
2025-06-30 13:17:09 -05:00

13 lines
185 B
Rust

// See <https://github.com/rust-lang/cargo/issues/13027>
macro_rules! foo {
() => {
let x = Box::new(1);
let _ = &x;
};
}
fn main() {
foo!();
foo!();
}