]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/patterns.rs
iterate List by value
[rust.git] / tests / ui / patterns.rs
index bd202fc04205816f657e28e732833f010798948b..5848ecd38d98db5e846e652a042c0c0e51bce09d 100644 (file)
@@ -17,4 +17,20 @@ fn main() {
         [x, inside @ .., y] => (), // no error
         [..] => (),
     }
+
+    let mut mutv = vec![1, 2, 3];
+
+    // required "ref" left out in suggestion: #5271
+    match mutv {
+        ref mut x @ _ => {
+            x.push(4);
+            println!("vec: {:?}", x);
+        },
+        ref y if y == &vec![0] => (),
+    }
+
+    match mutv {
+        ref x @ _ => println!("vec: {:?}", x),
+        ref y if y == &vec![0] => (),
+    }
 }