about summary refs log tree commit diff
path: root/compiler/rustc_feature
diff options
context:
space:
mode:
authorJonas Platte <jplatte@users.noreply.github.com>2021-03-02 12:54:25 +0100
committerGitHub <noreply@github.com>2021-03-02 12:54:25 +0100
commitc194849a7569665b3f446eb7c8cbccf1e2e2399a (patch)
treecfbcba7603a9a64d18b7e8e76815af49376ae4cd /compiler/rustc_feature
parentef0d5924c25b500b2b135e5a5f41754ab4a72e26 (diff)
downloadrust-c194849a7569665b3f446eb7c8cbccf1e2e2399a.tar.gz
rust-c194849a7569665b3f446eb7c8cbccf1e2e2399a.zip
Fix stabilization version of move_ref_pattern
Diffstat (limited to 'compiler/rustc_feature')
-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 aa54ffb132d..5012d500cee 100644
--- a/compiler/rustc_feature/src/accepted.rs
+++ b/compiler/rustc_feature/src/accepted.rs
@@ -272,7 +272,7 @@ declare_features! (
     (accepted, doc_alias, "1.48.0", Some(50146), None),
     /// Allows patterns with concurrent by-move and by-ref bindings.
     /// For example, you can write `Foo(a, ref b)` where `a` is by-move and `b` is by-ref.
-    (accepted, move_ref_pattern, "1.48.0", Some(68354), None),
+    (accepted, move_ref_pattern, "1.49.0", Some(68354), None),
     /// The smallest useful subset of `const_generics`.
     (accepted, min_const_generics, "1.51.0", Some(74878), None),