Skip to content

Commit 761ceab

Browse files
authored
Rollup merge of rust-lang#82697 - jplatte:patch-1, r=davidtwco
Fix stabilization version of move_ref_pattern Both the [changelog](https://github.com/rust-lang/rust/blob/master/RELEASES.md#version-1490-2020-12-31) and the milestone of the [stabilization PR](rust-lang#76119) say 1.49.0, but the source says 1.48.0. I think the former is correct.
2 parents 290117f + c194849 commit 761ceab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_feature/src/accepted.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ declare_features! (
272272
(accepted, doc_alias, "1.48.0", Some(50146), None),
273273
/// Allows patterns with concurrent by-move and by-ref bindings.
274274
/// For example, you can write `Foo(a, ref b)` where `a` is by-move and `b` is by-ref.
275-
(accepted, move_ref_pattern, "1.48.0", Some(68354), None),
275+
(accepted, move_ref_pattern, "1.49.0", Some(68354), None),
276276
/// The smallest useful subset of `const_generics`.
277277
(accepted, min_const_generics, "1.51.0", Some(74878), None),
278278

0 commit comments

Comments
 (0)