about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDylan MacKenzie <ecstaticmorse@gmail.com>2020-06-29 11:14:31 -0700
committerDylan MacKenzie <ecstaticmorse@gmail.com>2020-07-19 12:10:13 -0700
commit6100b74fbcf8da2122bd5ee4a9361965d8bf3429 (patch)
tree52102e32f24a27984ba4ccace0aa625dd4a7d3b5
parentd7f94516345a36ddfcd68cbdf1df835d356795c3 (diff)
downloadrust-6100b74fbcf8da2122bd5ee4a9361965d8bf3429.tar.gz
rust-6100b74fbcf8da2122bd5ee4a9361965d8bf3429.zip
Advertise correct stable version for const control flow
-rw-r--r--src/librustc_feature/accepted.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_feature/accepted.rs b/src/librustc_feature/accepted.rs
index d93c17b05b4..d16f023c00a 100644
--- a/src/librustc_feature/accepted.rs
+++ b/src/librustc_feature/accepted.rs
@@ -262,9 +262,9 @@ declare_features! (
     /// Allows using subslice patterns, `[a, .., b]` and `[a, xs @ .., b]`.
     (accepted, slice_patterns, "1.42.0", Some(62254), None),
     /// Allows the use of `if` and `match` in constants.
-    (accepted, const_if_match, "1.45.0", Some(49146), None),
+    (accepted, const_if_match, "1.46.0", Some(49146), None),
     /// Allows the use of `loop` and `while` in constants.
-    (accepted, const_loop, "1.45.0", Some(52000), None),
+    (accepted, const_loop, "1.46.0", Some(52000), None),
     /// Allows `#[track_caller]` to be used which provides
     /// accurate caller location reporting during panic (RFC 2091).
     (accepted, track_caller, "1.46.0", Some(47809), None),