]> 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 39686a9dd07ff03526652091b3434818b61c46d9..9cf2e10a5ee56940e5a06d103a6bcd01323dbf05 100644 (file)
@@ -1,48 +1,50 @@
 error: `if _ { .. } else { .. }` is an expression
-  --> $DIR/let_if_seq.rs:57:5
+  --> $DIR/let_if_seq.rs:65:5
    |
-57 | /     let mut foo = 0;
-58 | |     if f() {
-59 | |         foo = 42;
-60 | |     }
+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 useless-let-if-seq` implied by `-D warnings`
+   = 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:62:5
+  --> $DIR/let_if_seq.rs:70:5
    |
-62 | /     let mut bar = 0;
-63 | |     if f() {
-64 | |         f();
-65 | |         bar = 42;
-...  |
-68 | |         f();
-69 | |     }
+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:71:5
+  --> $DIR/let_if_seq.rs:78:5
    |
-71 | /     let quz;
-72 | |     if f() {
-73 | |         quz = 42;
-74 | |     } else {
-75 | |         quz = 0;
-76 | |     }
+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:100:5
-    |
-100 | /     let mut baz = 0;
-101 | |     if f() {
-102 | |         baz = 42;
-103 | |     }
-    | |_____^ 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