1
Fork 0

Rollup merge of #133374 - RalfJung:abi_unsupported_vector_types, r=jieyouxu

show abi_unsupported_vector_types lint in future breakage reports

The lint is now riding the train to 1.84. Given that crater found no case of this lint triggering at all, IMO it's fine to make it "report in deps" already for 1.85.

Part of https://github.com/rust-lang/rust/issues/116558.
This commit is contained in:
许杰友 Jieyou Xu (Joe) 2024-11-23 20:50:16 +08:00 committed by GitHub
commit f5cfb90082
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 624 additions and 1 deletions

View file

@ -5173,7 +5173,7 @@ declare_lint! {
Warn,
"this function call or definition uses a vector type which is not enabled",
@future_incompatible = FutureIncompatibleInfo {
reason: FutureIncompatibilityReason::FutureReleaseErrorDontReportInDeps,
reason: FutureIncompatibilityReason::FutureReleaseErrorReportInDeps,
reference: "issue #116558 <https://github.com/rust-lang/rust/issues/116558>",
};
}