Merge pull request #19558 from rust-lang/small-bug-catastrophic-effect

fix: Fix a small bug with catastrophic effects
This commit is contained in:
Chayim Refael Friedman 2025-04-10 06:48:50 +00:00 committed by GitHub
commit 7b21fd6f85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;
}
}