about summary refs log tree commit diff
path: root/compiler/rustc_next_trait_solver/src
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2025-02-06 21:19:21 +0000
committerMichael Goulet <michael@errs.io>2025-02-13 03:45:07 +0000
commitd0564fda651a9b98539826e9aae05e1f8e7d73ab (patch)
tree3728872b74cbd40bc614d296a040a193c72daf9c /compiler/rustc_next_trait_solver/src
parent516afd557c521eae3a64882b93d32772f3e2fa45 (diff)
downloadrust-d0564fda651a9b98539826e9aae05e1f8e7d73ab.tar.gz
rust-d0564fda651a9b98539826e9aae05e1f8e7d73ab.zip
Use BikeshedGuaranteedNotDrop in unsafe binder type WF too
Diffstat (limited to 'compiler/rustc_next_trait_solver/src')
-rw-r--r--compiler/rustc_next_trait_solver/src/solve/trait_goals.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_next_trait_solver/src/solve/trait_goals.rs b/compiler/rustc_next_trait_solver/src/solve/trait_goals.rs
index beb7f1bf30e..dabfa5cc04c 100644
--- a/compiler/rustc_next_trait_solver/src/solve/trait_goals.rs
+++ b/compiler/rustc_next_trait_solver/src/solve/trait_goals.rs
@@ -627,7 +627,7 @@ where
 
     /// NOTE: This is implemented as a built-in goal and not a set of impls like:
     ///
-    /// ```
+    /// ```rust,ignore (illustrative)
     /// impl<T> BikeshedGuaranteedNoDrop for T where T: Copy {}
     /// impl<T> BikeshedGuaranteedNoDrop for ManuallyDrop<T> {}
     /// ```