Skip to content

Commit 809858e

Browse files
committed
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.
1 parent 273465e commit 809858e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_lint_defs/src/builtin.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3782,7 +3782,7 @@ declare_lint! {
37823782
Warn,
37833783
"use of unsupported calling convention for function pointer",
37843784
@future_incompatible = FutureIncompatibleInfo {
3785-
reason: FutureIncompatibilityReason::FutureReleaseErrorDontReportInDeps,
3785+
reason: FutureIncompatibilityReason::FutureReleaseErrorReportInDeps,
37863786
reference: "issue #130260 <https://github.com/rust-lang/rust/issues/130260>",
37873787
};
37883788
}

0 commit comments

Comments
 (0)