diff options
| author | Tamme Dittrich <tamme@tweedegolf.com> | 2025-01-20 11:30:13 +0100 |
|---|---|---|
| committer | Tamme Dittrich <tamme@tweedegolf.com> | 2025-03-03 08:52:06 +0100 |
| commit | 9b78d48c112092ea0db5276d9ad6f447f0e1e30e (patch) | |
| tree | d5b0752e66778286e18b0ebb5b222c534c164404 | |
| parent | 81d8edc2000aa38b08ad09fce22d90f1990b6459 (diff) | |
| download | rust-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.rs | 2 |
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>", }; } |
