Skip to content

Commit dca5d64

Browse files
committed
test(rustfix): Update for nightly
Inspired by #15713
1 parent 930b4f6 commit dca5d64

File tree

3 files changed

+489
-227
lines changed

3 files changed

+489
-227
lines changed

crates/rustfix/tests/everything/dedup-suggestions.fixed.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
// See <https://github.com/rust-lang/cargo/issues/13027>
22
macro_rules! foo {
33
() => {
4-
let _ = &1;
4+
let x = Box::new(1);
5+
let _ = &x;
56
};
67
}
78

0 commit comments

Comments
 (0)