]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/formatting.stderr
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / formatting.stderr
index c59a202de5ff373e66c50e97f996e2c7fbc53729..29a5c55bc34b7512a1528294a6c5d830e7f9eedf 100644 (file)
-error: this looks like an `else if` but the `else` is missing
+error: this looks like an `else {..}` but the `else` is missing
   --> $DIR/formatting.rs:15:6
    |
-15 |     } if foo() {
+LL |     } {
    |      ^
    |
-   = note: #[deny(suspicious_else_formatting)] implied by #[deny(clippy)]
-note: lint level defined here
-  --> $DIR/formatting.rs:4:9
+   = note: `-D clippy::suspicious-else-formatting` implied by `-D warnings`
+   = note: to remove this lint, add the missing `else` or add a new line before the next block
+
+error: this looks like an `else if` but the `else` is missing
+  --> $DIR/formatting.rs:19:6
+   |
+LL |     } if foo() {
+   |      ^
    |
-4  | #![deny(clippy)]
-   |         ^^^^^^
    = note: to remove this lint, add the missing `else` or add a new line before the second `if`
 
 error: this looks like an `else if` but the `else` is missing
-  --> $DIR/formatting.rs:24:10
+  --> $DIR/formatting.rs:26:10
    |
-24 |         } if foo() {
+LL |         } if foo() {
    |          ^
    |
-   = note: #[deny(suspicious_else_formatting)] implied by #[deny(clippy)]
    = note: to remove this lint, add the missing `else` or add a new line before the second `if`
 
 error: this looks like an `else if` but the `else` is missing
   --> $DIR/formatting.rs:34:10
    |
-34 |         } if foo() {
+LL |         } if foo() {
    |          ^
    |
-   = note: #[deny(suspicious_else_formatting)] implied by #[deny(clippy)]
    = note: to remove this lint, add the missing `else` or add a new line before the second `if`
 
+error: this is an `else {..}` but the formatting might hide it
+  --> $DIR/formatting.rs:43:6
+   |
+LL |       } else
+   |  ______^
+LL | |     {
+   | |____^
+   |
+   = note: to remove this lint, remove the `else` or remove the new line between `else` and `{..}`
+
+error: this is an `else {..}` but the formatting might hide it
+  --> $DIR/formatting.rs:48:6
+   |
+LL |       }
+   |  ______^
+LL | |     else
+LL | |     {
+   | |____^
+   |
+   = note: to remove this lint, remove the `else` or remove the new line between `else` and `{..}`
+
 error: this is an `else if` but the formatting might hide it
-  --> $DIR/formatting.rs:45:6
+  --> $DIR/formatting.rs:54:6
    |
-45 |       } else
-   |  ______^ starting here...
-46 | |
-47 | |
-48 | |     if foo() { // the span of the above error should continue here
-   | |____^ ...ending here
+LL |       } else
+   |  ______^
+LL | |     if foo() { // the span of the above error should continue here
+   | |____^
    |
-   = note: #[deny(suspicious_else_formatting)] implied by #[deny(clippy)]
    = note: to remove this lint, remove the `else` or remove the new line between `else` and `if`
 
 error: this is an `else if` but the formatting might hide it
-  --> $DIR/formatting.rs:52:6
+  --> $DIR/formatting.rs:59:6
    |
-52 |       }
-   |  ______^ starting here...
-53 | |
-54 | |
-55 | |     else
-56 | |     if foo() { // the span of the above error should continue here
-   | |____^ ...ending here
+LL |       }
+   |  ______^
+LL | |     else
+LL | |     if foo() { // the span of the above error should continue here
+   | |____^
    |
-   = note: #[deny(suspicious_else_formatting)] implied by #[deny(clippy)]
    = note: to remove this lint, remove the `else` or remove the new line between `else` and `if`
 
 error: this looks like you are trying to use `.. -= ..`, but you really are doing `.. = (- ..)`
-  --> $DIR/formatting.rs:83:6
+  --> $DIR/formatting.rs:100:6
    |
-83 |     a =- 35;
+LL |     a =- 35;
    |      ^^^^
    |
-   = note: #[deny(suspicious_assignment_formatting)] implied by #[deny(clippy)]
-note: lint level defined here
-  --> $DIR/formatting.rs:4:9
-   |
-4  | #![deny(clippy)]
-   |         ^^^^^^
+   = note: `-D clippy::suspicious-assignment-formatting` implied by `-D warnings`
    = note: to remove this lint, use either `-=` or `= -`
 
 error: this looks like you are trying to use `.. *= ..`, but you really are doing `.. = (* ..)`
-  --> $DIR/formatting.rs:86:6
+  --> $DIR/formatting.rs:101:6
    |
-86 |     a =* &191;
+LL |     a =* &191;
    |      ^^^^
    |
-   = note: #[deny(suspicious_assignment_formatting)] implied by #[deny(clippy)]
    = note: to remove this lint, use either `*=` or `= *`
 
 error: this looks like you are trying to use `.. != ..`, but you really are doing `.. = (! ..)`
-  --> $DIR/formatting.rs:91:6
+  --> $DIR/formatting.rs:104:6
    |
-91 |     b =! false;
+LL |     b =! false;
    |      ^^^^
    |
-   = note: #[deny(suspicious_assignment_formatting)] implied by #[deny(clippy)]
    = note: to remove this lint, use either `!=` or `= !`
 
 error: possibly missing a comma here
-   --> $DIR/formatting.rs:102:19
-    |
-102 |         -1, -2, -3 // <= no comma here
-    |                   ^
-    |
-    = note: #[deny(possible_missing_comma)] implied by #[deny(clippy)]
-note: lint level defined here
-   --> $DIR/formatting.rs:4:9
-    |
-4   | #![deny(clippy)]
-    |         ^^^^^^
-    = note: to remove this lint, add a comma or write the expr in a single line
+  --> $DIR/formatting.rs:113:19
+   |
+LL |         -1, -2, -3 // <= no comma here
+   |                   ^
+   |
+   = note: `-D clippy::possible-missing-comma` implied by `-D warnings`
+   = note: to remove this lint, add a comma or write the expr in a single line
 
 error: possibly missing a comma here
-   --> $DIR/formatting.rs:108:19
-    |
-108 |         -1, -2, -3 // <= no comma here
-    |                   ^
-    |
-    = note: #[deny(possible_missing_comma)] implied by #[deny(clippy)]
-    = note: to remove this lint, add a comma or write the expr in a single line
+  --> $DIR/formatting.rs:117:19
+   |
+LL |         -1, -2, -3 // <= no comma here
+   |                   ^
+   |
+   = note: to remove this lint, add a comma or write the expr in a single line
 
-error: aborting due to 10 previous errors
+error: aborting due to 13 previous errors