]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_data_structures/src/intern.rs
Rollup merge of #93400 - ChayimFriedman2:dont-suggest-using-const-with-bounds-unused...
[rust.git] / compiler / rustc_data_structures / src / intern.rs
index c79a5ebf0933bbfba4b73418256b1964f5fb6302..46054fe7bcbb97234dff1580361a490e4a2a0cd7 100644 (file)
@@ -20,7 +20,7 @@ mod private {
 /// but you can only construct a `Interned` with `new_unchecked`, and not
 /// directly.
 #[derive(Debug)]
-#[cfg_attr(not(bootstrap), rustc_pass_by_value)]
+#[rustc_pass_by_value]
 pub struct Interned<'a, T>(pub &'a T, pub private::PrivateZst);
 
 impl<'a, T> Interned<'a, T> {