diff options
| author | bors <bors@rust-lang.org> | 2020-02-11 02:00:27 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2020-02-11 02:00:27 +0000 |
| commit | dc4242d9052a42cdf329c3a2430d02a3b3d415cb (patch) | |
| tree | 71de7572d10aeed9168aad022ec0a54b1f56ffa7 /src/test/ui/pattern/move-ref-patterns | |
| parent | 0f0cdf6acdb5a9b968728d961929ca59ff93cfa4 (diff) | |
| parent | 7b555178aef4045685eb359204b565a4bb8d1a9f (diff) | |
| download | rust-dc4242d9052a42cdf329c3a2430d02a3b3d415cb.tar.gz rust-dc4242d9052a42cdf329c3a2430d02a3b3d415cb.zip | |
Auto merge of #68929 - matprec:consistent-issue-references, r=Dylan-DPC
Make issue references consistent Fixes https://github.com/rust-lang/rust/issues/62976 cc https://github.com/rust-lang/rust/pull/63008 r? @varkor because you reviewed the original pr
Diffstat (limited to 'src/test/ui/pattern/move-ref-patterns')
| -rw-r--r-- | src/test/ui/pattern/move-ref-patterns/feature-gate-move_ref_pattern.stderr | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/ui/pattern/move-ref-patterns/feature-gate-move_ref_pattern.stderr b/src/test/ui/pattern/move-ref-patterns/feature-gate-move_ref_pattern.stderr index 8aef220c375..eb5391a95de 100644 --- a/src/test/ui/pattern/move-ref-patterns/feature-gate-move_ref_pattern.stderr +++ b/src/test/ui/pattern/move-ref-patterns/feature-gate-move_ref_pattern.stderr @@ -6,7 +6,7 @@ LL | Some((y, ref z)) => {} | | | by-move pattern here | - = note: for more information, see https://github.com/rust-lang/rust/issues/68354 + = note: see issue #68354 <https://github.com/rust-lang/rust/issues/68354> for more information = help: add `#![feature(move_ref_pattern)]` to the crate attributes to enable error[E0658]: binding by-move and by-ref in the same pattern is unstable @@ -17,7 +17,7 @@ LL | let (ref a, b) = tup.clone(); | | | by-ref pattern here | - = note: for more information, see https://github.com/rust-lang/rust/issues/68354 + = note: see issue #68354 <https://github.com/rust-lang/rust/issues/68354> for more information = help: add `#![feature(move_ref_pattern)]` to the crate attributes to enable error[E0658]: binding by-move and by-ref in the same pattern is unstable @@ -28,7 +28,7 @@ LL | let (a, mut b) = &tup; | | | by-ref pattern here | - = note: for more information, see https://github.com/rust-lang/rust/issues/68354 + = note: see issue #68354 <https://github.com/rust-lang/rust/issues/68354> for more information = help: add `#![feature(move_ref_pattern)]` to the crate attributes to enable error[E0658]: binding by-move and by-ref in the same pattern is unstable @@ -39,7 +39,7 @@ LL | let (mut a, b) = &mut tup; | | | by-move pattern here | - = note: for more information, see https://github.com/rust-lang/rust/issues/68354 + = note: see issue #68354 <https://github.com/rust-lang/rust/issues/68354> for more information = help: add `#![feature(move_ref_pattern)]` to the crate attributes to enable error[E0507]: cannot move out of a shared reference |
