Skip to content

Commit 7b21fd6

Browse files
Merge pull request #19558 from rust-lang/small-bug-catastrophic-effect
fix: Fix a small bug with catastrophic effects
2 parents 432a3bc + 2ae3e4c commit 7b21fd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/hir-def/src/signatures.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ bitflags! {
503503
/// it if needed.
504504
const HAS_TARGET_FEATURE = 1 << 8;
505505
const DEPRECATED_SAFE_2024 = 1 << 9;
506-
const RUSTC_ALLOW_INCOHERENT_IMPLS = 1 << 9;
506+
const RUSTC_ALLOW_INCOHERENT_IMPLS = 1 << 10;
507507
}
508508
}
509509

0 commit comments

Comments
 (0)