]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/swap.stderr
iterate List by value
[rust.git] / tests / ui / swap.stderr
index 0bd8721b4ff51568a4184ced73dd48ca3160d4a6..f49bcfedf3a1970b59751afe03ef8bf400d5cc23 100644 (file)
@@ -1,85 +1,68 @@
 error: this looks like you are swapping elements of `foo` manually
-  --> $DIR/swap.rs:11:5
-   |
-11 | /     let temp = foo[0];
-12 | |     foo[0] = foo[1];
-13 | |     foo[1] = temp;
-   | |_________________^ help: try `foo.swap(0, 1)`
+  --> $DIR/swap.rs:35:5
    |
-   = note: #[deny(manual_swap)] implied by #[deny(clippy)]
-note: lint level defined here
-  --> $DIR/swap.rs:4:9
+LL | /     let temp = foo[0];
+LL | |     foo[0] = foo[1];
+LL | |     foo[1] = temp;
+   | |_________________^ help: try: `foo.swap(0, 1)`
    |
-4  | #![deny(clippy)]
-   |         ^^^^^^
+   = note: `-D clippy::manual-swap` implied by `-D warnings`
 
 error: this looks like you are swapping elements of `foo` manually
-  --> $DIR/swap.rs:23:5
-   |
-23 | /     let temp = foo[0];
-24 | |     foo[0] = foo[1];
-25 | |     foo[1] = temp;
-   | |_________________^ help: try `foo.swap(0, 1)`
+  --> $DIR/swap.rs:44:5
    |
-   = note: #[deny(manual_swap)] implied by #[deny(clippy)]
+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
-   |
-35 | /     let temp = foo[0];
-36 | |     foo[0] = foo[1];
-37 | |     foo[1] = temp;
-   | |_________________^ help: try `foo.swap(0, 1)`
+  --> $DIR/swap.rs:62:5
    |
-   = note: #[deny(manual_swap)] implied by #[deny(clippy)]
+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:60:7
+  --> $DIR/swap.rs:83:7
    |
-60 |       ; let t = a;
+LL |       ; let t = a;
    |  _______^
-61 | |     a = b;
-62 | |     b = t;
-   | |_________^ help: try `std::mem::swap(&mut a, &mut b)`
+LL | |     a = b;
+LL | |     b = t;
+   | |_________^ help: try: `std::mem::swap(&mut a, &mut b)`
    |
-   = note: #[deny(manual_swap)] implied by #[deny(clippy)]
    = note: or maybe you should use `std::mem::replace`?
 
 error: this looks like you are swapping `c.0` and `a` manually
-  --> $DIR/swap.rs:77:7
+  --> $DIR/swap.rs:92:7
    |
-77 |       ; let t = c.0;
+LL |       ; let t = c.0;
    |  _______^
-78 | |     c.0 = a;
-79 | |     a = t;
-   | |_________^ help: try `std::mem::swap(&mut c.0, &mut a)`
+LL | |     c.0 = a;
+LL | |     a = t;
+   | |_________^ help: try: `std::mem::swap(&mut c.0, &mut a)`
    |
-   = note: #[deny(manual_swap)] implied by #[deny(clippy)]
    = note: or maybe you should use `std::mem::replace`?
 
 error: this looks like you are trying to swap `a` and `b`
-  --> $DIR/swap.rs:53:5
-   |
-53 | /     a = b;
-54 | |     b = a;
-   | |_________^ help: try `std::mem::swap(&mut a, &mut b)`
+  --> $DIR/swap.rs:80:5
    |
-   = note: #[deny(almost_swapped)] implied by #[deny(clippy)]
-note: lint level defined here
-  --> $DIR/swap.rs:4:9
+LL | /     a = b;
+LL | |     b = a;
+   | |_________^ help: try: `std::mem::swap(&mut a, &mut b)`
    |
-4  | #![deny(clippy)]
-   |         ^^^^^^
+   = 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:70:5
+  --> $DIR/swap.rs:89:5
    |
-70 | /     c.0 = a;
-71 | |     a = c.0;
-   | |___________^ help: try `std::mem::swap(&mut c.0, &mut a)`
+LL | /     c.0 = a;
+LL | |     a = c.0;
+   | |___________^ help: try: `std::mem::swap(&mut c.0, &mut a)`
    |
-   = note: #[deny(almost_swapped)] implied by #[deny(clippy)]
    = note: or maybe you should use `std::mem::replace`?
 
 error: aborting due to 7 previous errors