about summary refs log tree commit diff
path: root/src/test/ui/array-slice-vec/vec-matching-fold.rs
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-07-08 01:47:46 +0200
committerMazdak Farrokhzad <twingoow@gmail.com>2019-07-28 06:53:39 +0200
commit75da43dc87a9fee3fc1ef5cffb4a6721ef4bd2ba (patch)
tree3d90c5ef535ada61cc549e97ab56987cc4b502b7 /src/test/ui/array-slice-vec/vec-matching-fold.rs
parent891a736b0206f9646803475bed1aeb7ac9efcadd (diff)
downloadrust-75da43dc87a9fee3fc1ef5cffb4a6721ef4bd2ba.tar.gz
rust-75da43dc87a9fee3fc1ef5cffb4a6721ef4bd2ba.zip
Use new 'p @ ..' syntax in tests.
Diffstat (limited to 'src/test/ui/array-slice-vec/vec-matching-fold.rs')
-rw-r--r--src/test/ui/array-slice-vec/vec-matching-fold.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/array-slice-vec/vec-matching-fold.rs b/src/test/ui/array-slice-vec/vec-matching-fold.rs
index 2b19c49c427..f416160db24 100644
--- a/src/test/ui/array-slice-vec/vec-matching-fold.rs
+++ b/src/test/ui/array-slice-vec/vec-matching-fold.rs
@@ -11,7 +11,7 @@ fn foldl<T, U, F>(values: &[T],
     U: Clone+Debug, T:Debug,
     F: FnMut(U, &T) -> U,
 {    match values {
-        &[ref head, ref tail..] =>
+        &[ref head, ref tail @ ..] =>
             foldl(tail, function(initial, head), function),
         &[] => {
             // FIXME: call guards
@@ -28,7 +28,7 @@ fn foldr<T, U, F>(values: &[T],
     F: FnMut(&T, U) -> U,
 {
     match values {
-        &[ref head.., ref tail] =>
+        &[ref head @ .., ref tail] =>
             foldr(head, function(tail, initial), function),
         &[] => {
             // FIXME: call guards