]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/swap.stderr
iterate List by value
[rust.git] / tests / ui / swap.stderr
index a01ec375e639e7ccda1823d891f7ab8f2192bad0..f49bcfedf3a1970b59751afe03ef8bf400d5cc23 100644 (file)
@@ -1,66 +1,66 @@
 error: this looks like you are swapping elements of `foo` manually
-  --> $DIR/swap.rs:11:5
+  --> $DIR/swap.rs:35:5
    |
-11 | /     let temp = foo[0];
-12 | |     foo[0] = foo[1];
-13 | |     foo[1] = temp;
+LL | /     let temp = foo[0];
+LL | |     foo[0] = foo[1];
+LL | |     foo[1] = temp;
    | |_________________^ help: try: `foo.swap(0, 1)`
    |
-   = note: `-D manual-swap` implied by `-D warnings`
+   = note: `-D clippy::manual-swap` implied by `-D warnings`
 
 error: this looks like you are swapping elements of `foo` manually
-  --> $DIR/swap.rs:20:5
+  --> $DIR/swap.rs:44:5
    |
-20 | /     let temp = foo[0];
-21 | |     foo[0] = foo[1];
-22 | |     foo[1] = temp;
+LL | /     let temp = foo[0];
+LL | |     foo[0] = foo[1];
+LL | |     foo[1] = temp;
    | |_________________^ help: try: `foo.swap(0, 1)`
 
 error: this looks like you are swapping elements of `foo` manually
-  --> $DIR/swap.rs:29:5
+  --> $DIR/swap.rs:62:5
    |
-29 | /     let temp = foo[0];
-30 | |     foo[0] = foo[1];
-31 | |     foo[1] = temp;
+LL | /     let temp = foo[0];
+LL | |     foo[0] = foo[1];
+LL | |     foo[1] = temp;
    | |_________________^ help: try: `foo.swap(0, 1)`
 
 error: this looks like you are swapping `a` and `b` manually
-  --> $DIR/swap.rs:47:7
+  --> $DIR/swap.rs:83:7
    |
-47 |       ; let t = a;
+LL |       ; let t = a;
    |  _______^
-48 | |     a = b;
-49 | |     b = t;
+LL | |     a = b;
+LL | |     b = t;
    | |_________^ help: try: `std::mem::swap(&mut a, &mut b)`
    |
    = note: or maybe you should use `std::mem::replace`?
 
 error: this looks like you are swapping `c.0` and `a` manually
-  --> $DIR/swap.rs:56:7
+  --> $DIR/swap.rs:92:7
    |
-56 |       ; let t = c.0;
+LL |       ; let t = c.0;
    |  _______^
-57 | |     c.0 = a;
-58 | |     a = t;
+LL | |     c.0 = a;
+LL | |     a = t;
    | |_________^ help: try: `std::mem::swap(&mut c.0, &mut a)`
    |
    = note: or maybe you should use `std::mem::replace`?
 
 error: this looks like you are trying to swap `a` and `b`
-  --> $DIR/swap.rs:44:5
+  --> $DIR/swap.rs:80:5
    |
-44 | /     a = b;
-45 | |     b = a;
+LL | /     a = b;
+LL | |     b = a;
    | |_________^ help: try: `std::mem::swap(&mut a, &mut b)`
    |
-   = note: `-D almost-swapped` implied by `-D warnings`
+   = note: `-D clippy::almost-swapped` implied by `-D warnings`
    = note: or maybe you should use `std::mem::replace`?
 
 error: this looks like you are trying to swap `c.0` and `a`
-  --> $DIR/swap.rs:53:5
+  --> $DIR/swap.rs:89:5
    |
-53 | /     c.0 = a;
-54 | |     a = c.0;
+LL | /     c.0 = a;
+LL | |     a = c.0;
    | |___________^ help: try: `std::mem::swap(&mut c.0, &mut a)`
    |
    = note: or maybe you should use `std::mem::replace`?