about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCharles Lew <crlf0710@gmail.com>2022-09-11 13:57:41 +0800
committerCharles Lew <crlf0710@gmail.com>2022-09-11 14:04:18 +0800
commit0f367a9be89c58087e6a3373125a230698287ed9 (patch)
tree248be81b931f2def47019b89bf6eb6e382a105f2
parent9cd008f51463792398c83e1765252f5597ec992a (diff)
downloadrust-0f367a9be89c58087e6a3373125a230698287ed9.tar.gz
rust-0f367a9be89c58087e6a3373125a230698287ed9.zip
Use current rustc version.
-rw-r--r--compiler/rustc_feature/src/active.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_feature/src/active.rs b/compiler/rustc_feature/src/active.rs
index c2cc4d7923b..5377ebde168 100644
--- a/compiler/rustc_feature/src/active.rs
+++ b/compiler/rustc_feature/src/active.rs
@@ -395,7 +395,7 @@ declare_features! (
     /// Allows using `#[repr(align(...))]` on function items
     (active, fn_align, "1.53.0", Some(82232), None),
     /// Allows generators to be cloned.
-    (active, generator_clone, "1.60.0", Some(95360), None),
+    (active, generator_clone, "CURRENT_RUSTC_VERSION", Some(95360), None),
     /// Allows defining generators.
     (active, generators, "1.21.0", Some(43122), None),
     /// Infer generic args for both consts and types.