]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/block_in_if_condition.stderr
Merge remote-tracking branch 'origin/beta_backport' into HEAD
[rust.git] / tests / ui / block_in_if_condition.stderr
index 86a289c19a84101ee128ce2d3bec42f9314c44ef..0876d5db6964152aa585e57f11f4210f90d47909 100644 (file)
@@ -1,14 +1,14 @@
 error: in an 'if' condition, avoid complex blocks or closures with blocks; instead, move the block or closure higher and bind it with a 'let'
-  --> $DIR/block_in_if_condition.rs:30:8
+  --> $DIR/block_in_if_condition.rs:26:8
    |
-30 |       if {
+LL |       if {
    |  ________^
-31 | |         let x = 3;
-32 | |         x == 3
-33 | |     } {
+LL | |         let x = 3;
+LL | |         x == 3
+LL | |     } {
    | |_____^
    |
-   = note: `-D block-in-if-condition-stmt` implied by `-D warnings`
+   = note: `-D clippy::block-in-if-condition-stmt` implied by `-D warnings`
    = help: try
            let res = {
                let x = 3;
@@ -19,34 +19,44 @@ error: in an 'if' condition, avoid complex blocks or closures with blocks; inste
            } ... 
 
 error: omit braces around single expression condition
-  --> $DIR/block_in_if_condition.rs:41:8
+  --> $DIR/block_in_if_condition.rs:37:8
    |
-41 |     if { true } {
+LL |     if { true } {
    |        ^^^^^^^^
    |
-   = note: `-D block-in-if-condition-expr` implied by `-D warnings`
+   = note: `-D clippy::block-in-if-condition-expr` implied by `-D warnings`
    = help: try
            if true {
                6
            } ... 
 
 error: in an 'if' condition, avoid complex blocks or closures with blocks; instead, move the block or closure higher and bind it with a 'let'
-  --> $DIR/block_in_if_condition.rs:58:49
-   |
-58 |     if v == 3 && sky == "blue" && predicate(|x| { let target = 3; x == target }, v) {
-   |                                                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+  --> $DIR/block_in_if_condition.rs:58:17
+   |
+LL |               |x| {
+   |  _________________^
+LL | |                 let target = 3;
+LL | |                 x == target
+LL | |             },
+   | |_____________^
 
 error: in an 'if' condition, avoid complex blocks or closures with blocks; instead, move the block or closure higher and bind it with a 'let'
-  --> $DIR/block_in_if_condition.rs:61:22
-   |
-61 |     if predicate(|x| { let target = 3; x == target }, v) {
-   |                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+  --> $DIR/block_in_if_condition.rs:67:13
+   |
+LL |           |x| {
+   |  _____________^
+LL | |             let target = 3;
+LL | |             x == target
+LL | |         },
+   | |_________^
 
 error: this boolean expression can be simplified
-  --> $DIR/block_in_if_condition.rs:67:8
+  --> $DIR/block_in_if_condition.rs:77:8
    |
-67 |     if true && x == 3 {
+LL |     if true && x == 3 {
    |        ^^^^^^^^^^^^^^ help: try: `x == 3`
    |
-   = note: `-D nonminimal-bool` implied by `-D warnings`
+   = note: `-D clippy::nonminimal-bool` implied by `-D warnings`
+
+error: aborting due to 5 previous errors