]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/let_if_seq.stderr
A new lint for shared code in if blocks
[rust.git] / tests / ui / let_if_seq.stderr
index 6e2ec6d4aaaeec98bf6e2c86f587b54248a72fec..9cf2e10a5ee56940e5a06d103a6bcd01323dbf05 100644 (file)
@@ -1,50 +1,50 @@
 error: `if _ { .. } else { .. }` is an expression
-  --> $DIR/let_if_seq.rs:67:5
+  --> $DIR/let_if_seq.rs:65:5
    |
-67 | /     let mut foo = 0;
-68 | |     if f() {
-69 | |         foo = 42;
-70 | |     }
+LL | /     let mut foo = 0;
+LL | |     if f() {
+LL | |         foo = 42;
+LL | |     }
    | |_____^ help: it is more idiomatic to write: `let <mut> foo = if f() { 42 } else { 0 };`
    |
    = note: `-D clippy::useless-let-if-seq` implied by `-D warnings`
    = note: you might not need `mut` at all
 
 error: `if _ { .. } else { .. }` is an expression
-  --> $DIR/let_if_seq.rs:72:5
+  --> $DIR/let_if_seq.rs:70:5
    |
-72 | /     let mut bar = 0;
-73 | |     if f() {
-74 | |         f();
-75 | |         bar = 42;
-...  |
-78 | |         f();
-79 | |     }
+LL | /     let mut bar = 0;
+LL | |     if f() {
+LL | |         f();
+LL | |         bar = 42;
+LL | |     } else {
+LL | |         f();
+LL | |     }
    | |_____^ help: it is more idiomatic to write: `let <mut> bar = if f() { ..; 42 } else { ..; 0 };`
    |
    = note: you might not need `mut` at all
 
 error: `if _ { .. } else { .. }` is an expression
-  --> $DIR/let_if_seq.rs:81:5
+  --> $DIR/let_if_seq.rs:78:5
    |
-81 | /     let quz;
-82 | |     if f() {
-83 | |         quz = 42;
-84 | |     } else {
-85 | |         quz = 0;
-86 | |     }
+LL | /     let quz;
+LL | |     if f() {
+LL | |         quz = 42;
+LL | |     } else {
+LL | |         quz = 0;
+LL | |     }
    | |_____^ help: it is more idiomatic to write: `let quz = if f() { 42 } else { 0 };`
 
 error: `if _ { .. } else { .. }` is an expression
-   --> $DIR/let_if_seq.rs:110:5
-    |
-110 | /     let mut baz = 0;
-111 | |     if f() {
-112 | |         baz = 42;
-113 | |     }
-    | |_____^ help: it is more idiomatic to write: `let <mut> baz = if f() { 42 } else { 0 };`
-    |
-    = note: you might not need `mut` at all
+  --> $DIR/let_if_seq.rs:107:5
+   |
+LL | /     let mut baz = 0;
+LL | |     if f() {
+LL | |         baz = 42;
+LL | |     }
+   | |_____^ help: it is more idiomatic to write: `let <mut> baz = if f() { 42 } else { 0 };`
+   |
+   = note: you might not need `mut` at all
 
 error: aborting due to 4 previous errors