about summary refs log tree commit diff
path: root/compiler/rustc_feature/src
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2022-08-27 17:35:46 +0200
committerest31 <MTest31@outlook.com>2022-08-27 17:36:13 +0200
commit4caedbae869855a19ca49455e2cd338ae3b8c1ef (patch)
tree9ab147f17cc7ae96fad1763830cf3cbdc0b7e325 /compiler/rustc_feature/src
parent6e4e3e84b544bcec30b0e4dab64b8f33ea0ce06e (diff)
downloadrust-4caedbae869855a19ca49455e2cd338ae3b8c1ef.tar.gz
rust-4caedbae869855a19ca49455e2cd338ae3b8c1ef.zip
Adjust label break value stabilization version to CURRENT_RUSTC_VERSION
Diffstat (limited to 'compiler/rustc_feature/src')
-rw-r--r--compiler/rustc_feature/src/accepted.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_feature/src/accepted.rs b/compiler/rustc_feature/src/accepted.rs
index 37b2b0ecad7..fb1ad8d6beb 100644
--- a/compiler/rustc_feature/src/accepted.rs
+++ b/compiler/rustc_feature/src/accepted.rs
@@ -187,7 +187,7 @@ declare_features! (
     /// especially around globs and shadowing (RFC 1560).
     (accepted, item_like_imports, "1.15.0", Some(35120), None),
     /// Allows `'a: { break 'a; }`.
-    (accepted, label_break_value, "1.65.0", Some(48594), None),
+    (accepted, label_break_value, "CURRENT_RUSTC_VERSION", Some(48594), None),
     /// Allows `if/while p && let q = r && ...` chains.
     (accepted, let_chains, "1.64.0", Some(53667), None),
     /// Allows `break {expr}` with a value inside `loop`s.