diff options
| author | Noah Lev <camelidcamel@gmail.com> | 2021-10-06 09:34:39 -0700 |
|---|---|---|
| committer | Noah Lev <camelidcamel@gmail.com> | 2021-10-06 09:34:39 -0700 |
| commit | 6189d0a116c599804656d7befc3d4d35a49a8681 (patch) | |
| tree | 30c0baf5060068917c45b3768656f46d415976e7 /compiler/rustc_feature | |
| parent | d7539a6af09e5889ed9bcb8b49571b7a59c32e65 (diff) | |
| download | rust-6189d0a116c599804656d7befc3d4d35a49a8681.tar.gz rust-6189d0a116c599804656d7befc3d4d35a49a8681.zip | |
Fix stabilization version for `bindings_after_at`
According to the release notes and its PR milestone, it was stabilized in 1.56.0.
Diffstat (limited to 'compiler/rustc_feature')
| -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. |
