From 1c3b03a17019e7aa9892ee4c5bf899c3db357412 Mon Sep 17 00:00:00 2001 From: Michael Goulet Date: Tue, 17 Sep 2024 09:44:22 -0400 Subject: [PATCH] Mark where_clauses_object_safety as removed --- compiler/rustc_lint/src/lib.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/compiler/rustc_lint/src/lib.rs b/compiler/rustc_lint/src/lib.rs index 5c67e21687f..e8229b72182 100644 --- a/compiler/rustc_lint/src/lib.rs +++ b/compiler/rustc_lint/src/lib.rs @@ -583,6 +583,11 @@ macro_rules! add_lint_group { "const_eval_mutable_ptr_in_final_value", "partially allowed now, otherwise turned into a hard error", ); + store.register_removed( + "where_clauses_object_safety", + "converted into hard error, see PR #125380 \ + for more information", + ); } fn register_internals(store: &mut LintStore) {