about summary refs log tree commit diff
path: root/compiler
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-09-17 17:28:35 +0200
committerGitHub <noreply@github.com>2024-09-17 17:28:35 +0200
commit065690e186bbccb51d4069e4c53bcf264ee42cac (patch)
tree65361cccbb6328677527b048be9b7a4ad065f06a /compiler
parentd5a081981d166f6542a050d17035424062ef4aae (diff)
parent1c3b03a17019e7aa9892ee4c5bf899c3db357412 (diff)
downloadrust-065690e186bbccb51d4069e4c53bcf264ee42cac.tar.gz
rust-065690e186bbccb51d4069e4c53bcf264ee42cac.zip
Rollup merge of #130469 - compiler-errors:wc-obj-safety, r=jackh726
Mark `where_clauses_object_safety` as removed

r? lcnr
Diffstat (limited to 'compiler')
-rw-r--r--compiler/rustc_lint/src/lib.rs5
1 files changed, 5 insertions, 0 deletions
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 @@ fn register_builtins(store: &mut LintStore) {
         "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 \
+         <https://github.com/rust-lang/rust/pull/125380> for more information",
+    );
 }
 
 fn register_internals(store: &mut LintStore) {