diff options
| author | Chayim Refael Friedman <chayimfr@gmail.com> | 2025-04-10 06:48:50 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-10 06:48:50 +0000 |
| commit | a7cdc0bf62032f2b1d6dd87d4ec61a18164a9b2d (patch) | |
| tree | ff79f16b83cc614ef7fdf83f16c0dfb37b6940b2 | |
| parent | d711d0a19a834fc4aa31946bf86d86f8eb8569f0 (diff) | |
| parent | df0873e888a2f4c89f8aefbea0d58c2804abc508 (diff) | |
| download | rust-a7cdc0bf62032f2b1d6dd87d4ec61a18164a9b2d.tar.gz rust-a7cdc0bf62032f2b1d6dd87d4ec61a18164a9b2d.zip | |
Merge pull request #19558 from rust-lang/small-bug-catastrophic-effect
fix: Fix a small bug with catastrophic effects
| -rw-r--r-- | src/tools/rust-analyzer/crates/hir-def/src/signatures.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/crates/hir-def/src/signatures.rs b/src/tools/rust-analyzer/crates/hir-def/src/signatures.rs index c0be1b7c68a..86d6445e292 100644 --- a/src/tools/rust-analyzer/crates/hir-def/src/signatures.rs +++ b/src/tools/rust-analyzer/crates/hir-def/src/signatures.rs @@ -503,7 +503,7 @@ bitflags! { /// it if needed. const HAS_TARGET_FEATURE = 1 << 8; const DEPRECATED_SAFE_2024 = 1 << 9; - const RUSTC_ALLOW_INCOHERENT_IMPLS = 1 << 9; + const RUSTC_ALLOW_INCOHERENT_IMPLS = 1 << 10; } } |
