about summary refs log tree commit diff
path: root/library/core/src/clone.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2025-04-10 00:43:25 +0000
committerbors <bors@rust-lang.org>2025-04-10 00:43:25 +0000
commit6813f955a616999109ff69c48bbad6be33c6cdb3 (patch)
treef423c6c225d7af02183062217e7f5b0cc60e2603 /library/core/src/clone.rs
parent51548ce71fe80b5ca7aef00e6f1bf2491df98c79 (diff)
parent5a5bda52f09214c5771cf0b2be5f4579a0d888c7 (diff)
downloadrust-6813f955a616999109ff69c48bbad6be33c6cdb3.tar.gz
rust-6813f955a616999109ff69c48bbad6be33c6cdb3.zip
Auto merge of #139279 - BoxyUwU:bump-boostrap, r=jieyouxu
Bump boostrap compiler to new beta

try-job: `*msvc*`
Diffstat (limited to 'library/core/src/clone.rs')
-rw-r--r--library/core/src/clone.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/clone.rs b/library/core/src/clone.rs
index 64746309861..c237ac84cf4 100644
--- a/library/core/src/clone.rs
+++ b/library/core/src/clone.rs
@@ -216,7 +216,7 @@ pub macro Clone($item:item) {
 /// Use closures allow captured values to be automatically used.
 /// This is similar to have a closure that you would call `.use` over each captured value.
 #[unstable(feature = "ergonomic_clones", issue = "132290")]
-#[cfg_attr(not(bootstrap), lang = "use_cloned")]
+#[lang = "use_cloned"]
 pub trait UseCloned: Clone {
     // Empty.
 }