Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit a7cdc0b

Browse files
Merge pull request rust-lang#19558 from rust-lang/small-bug-catastrophic-effect
fix: Fix a small bug with catastrophic effects
2 parents d711d0a + df0873e commit a7cdc0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/rust-analyzer/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)