about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTamme Dittrich <tamme@tweedegolf.com>2025-01-20 11:30:13 +0100
committerTamme Dittrich <tamme@tweedegolf.com>2025-03-03 08:52:06 +0100
commit9b78d48c112092ea0db5276d9ad6f447f0e1e30e (patch)
treed5b0752e66778286e18b0ebb5b222c534c164404
parent81d8edc2000aa38b08ad09fce22d90f1990b6459 (diff)
downloadrust-9b78d48c112092ea0db5276d9ad6f447f0e1e30e.tar.gz
rust-9b78d48c112092ea0db5276d9ad6f447f0e1e30e.zip
After introducing the warning in 1.83, now also warn in deps
This was left to only warn in the current crate to give users
a chance to update their code. Now for 1.86 we also warn users
depending on those crates.
-rw-r--r--compiler/rustc_lint_defs/src/builtin.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_lint_defs/src/builtin.rs b/compiler/rustc_lint_defs/src/builtin.rs
index 97850a2afc1..3d63ea82053 100644
--- a/compiler/rustc_lint_defs/src/builtin.rs
+++ b/compiler/rustc_lint_defs/src/builtin.rs
@@ -3782,7 +3782,7 @@ declare_lint! {
     Warn,
     "use of unsupported calling convention for function pointer",
     @future_incompatible = FutureIncompatibleInfo {
-        reason: FutureIncompatibilityReason::FutureReleaseErrorDontReportInDeps,
+        reason: FutureIncompatibilityReason::FutureReleaseErrorReportInDeps,
         reference: "issue #130260 <https://github.com/rust-lang/rust/issues/130260>",
     };
 }