about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2021-10-09 11:55:58 +0200
committerGitHub <noreply@github.com>2021-10-09 11:55:58 +0200
commit03a34a291d80b0f2e80e0f74c4fc41c68c7abe6c (patch)
tree4efe882f4662c2bbfdadeb40ec19b2df48f71ac2
parent36db65879652ddd69a20f8939611ff4201318947 (diff)
parent6189d0a116c599804656d7befc3d4d35a49a8681 (diff)
downloadrust-03a34a291d80b0f2e80e0f74c4fc41c68c7abe6c.tar.gz
rust-03a34a291d80b0f2e80e0f74c4fc41c68c7abe6c.zip
Rollup merge of #89605 - camelid:fix-version, r=nagisa
Fix stabilization version for `bindings_after_at`

According to the release notes and its PR milestone, it was stabilized
in 1.56.0.
-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 2ef0e0f6b1e..55ec3703df8 100644
--- a/compiler/rustc_feature/src/accepted.rs
+++ b/compiler/rustc_feature/src/accepted.rs
@@ -288,7 +288,7 @@ declare_features! (
     (accepted, member_constraints, "1.54.0", Some(61997), None),
     /// Allows bindings in the subpattern of a binding pattern.
     /// For example, you can write `x @ Some(y)`.
-    (accepted, bindings_after_at, "1.54.0", Some(65490), None),
+    (accepted, bindings_after_at, "1.56.0", Some(65490), None),
     /// Allows calling `transmute` in const fn
     (accepted, const_fn_transmute, "1.56.0", Some(53605), None),
     /// Allows accessing fields of unions inside `const` functions.