]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/swap.stderr
iterate List by value
[rust.git] / tests / ui / swap.stderr
index 12d012442ad18259420d7ff68208015975124b92..f49bcfedf3a1970b59751afe03ef8bf400d5cc23 100644 (file)
@@ -1,66 +1,66 @@
 error: this looks like you are swapping elements of `foo` manually
-  --> $DIR/swap.rs:17:5
+  --> $DIR/swap.rs:35:5
    |
-17 | /     let temp = foo[0];
-18 | |     foo[0] = foo[1];
-19 | |     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 clippy::manual-swap` implied by `-D warnings`
 
 error: this looks like you are swapping elements of `foo` manually
-  --> $DIR/swap.rs:26:5
+  --> $DIR/swap.rs:44:5
    |
-26 | /     let temp = foo[0];
-27 | |     foo[0] = foo[1];
-28 | |     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:35:5
+  --> $DIR/swap.rs:62:5
    |
-35 | /     let temp = foo[0];
-36 | |     foo[0] = foo[1];
-37 | |     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:53:6
+  --> $DIR/swap.rs:83:7
    |
-53 |   ;    let t = a;
-   |  ______^
-54 | |     a = b;
-55 | |     b = t;
+LL |       ; let t = a;
+   |  _______^
+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:62:6
+  --> $DIR/swap.rs:92:7
    |
-62 |   ;    let t = c.0;
-   |  ______^
-63 | |     c.0 = a;
-64 | |     a = t;
+LL |       ; let t = c.0;
+   |  _______^
+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:50:5
+  --> $DIR/swap.rs:80:5
    |
-50 | /     a = b;
-51 | |     b = a;
+LL | /     a = b;
+LL | |     b = a;
    | |_________^ help: try: `std::mem::swap(&mut a, &mut b)`
    |
    = 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:59:5
+  --> $DIR/swap.rs:89:5
    |
-59 | /     c.0 = a;
-60 | |     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`?