diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2021-10-09 11:55:58 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-09 11:55:58 +0200 |
| commit | 03a34a291d80b0f2e80e0f74c4fc41c68c7abe6c (patch) | |
| tree | 4efe882f4662c2bbfdadeb40ec19b2df48f71ac2 | |
| parent | 36db65879652ddd69a20f8939611ff4201318947 (diff) | |
| parent | 6189d0a116c599804656d7befc3d4d35a49a8681 (diff) | |
| download | rust-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.rs | 2 |
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. |
