]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/formatting.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / formatting.stderr
index 9f00a51bc1fd4a985c9e92ab9b92f96b807d6199..061540b9aa5f56c4373b4afd817d2d6cd07d47b0 100644 (file)
@@ -1,7 +1,7 @@
 error: this looks like an `else {..}` but the `else` is missing
   --> $DIR/formatting.rs:21:6
    |
-21 |     } {
+LL |     } {
    |      ^
    |
    = note: `-D clippy::suspicious-else-formatting` implied by `-D warnings`
@@ -10,7 +10,7 @@ error: this looks like an `else {..}` but the `else` is missing
 error: this looks like an `else if` but the `else` is missing
   --> $DIR/formatting.rs:25:6
    |
-25 |     } if foo() {
+LL |     } if foo() {
    |      ^
    |
    = note: to remove this lint, add the missing `else` or add a new line before the second `if`
@@ -18,7 +18,7 @@ error: this looks like an `else if` but the `else` is missing
 error: this looks like an `else if` but the `else` is missing
   --> $DIR/formatting.rs:32:10
    |
-32 |         } if foo() {
+LL |         } if foo() {
    |          ^
    |
    = note: to remove this lint, add the missing `else` or add a new line before the second `if`
@@ -26,7 +26,7 @@ error: this looks like an `else if` but the `else` is missing
 error: this looks like an `else if` but the `else` is missing
   --> $DIR/formatting.rs:40:10
    |
-40 |         } if foo() {
+LL |         } if foo() {
    |          ^
    |
    = note: to remove this lint, add the missing `else` or add a new line before the second `if`
@@ -34,9 +34,9 @@ error: this looks like an `else if` but the `else` is missing
 error: this is an `else {..}` but the formatting might hide it
   --> $DIR/formatting.rs:49:6
    |
-49 |       } else
+LL |       } else
    |  ______^
-50 | |     {
+LL | |     {
    | |____^
    |
    = note: to remove this lint, remove the `else` or remove the new line between `else` and `{..}`
@@ -44,10 +44,10 @@ error: this is an `else {..}` but the formatting might hide it
 error: this is an `else {..}` but the formatting might hide it
   --> $DIR/formatting.rs:54:6
    |
-54 |       }
+LL |       }
    |  ______^
-55 | |     else
-56 | |     {
+LL | |     else
+LL | |     {
    | |____^
    |
    = note: to remove this lint, remove the `else` or remove the new line between `else` and `{..}`
@@ -55,9 +55,9 @@ error: this is an `else {..}` but the formatting might hide it
 error: this is an `else if` but the formatting might hide it
   --> $DIR/formatting.rs:60:6
    |
-60 |       } else
+LL |       } else
    |  ______^
-61 | |     if foo() { // the span of the above error should continue here
+LL | |     if foo() { // the span of the above error should continue here
    | |____^
    |
    = note: to remove this lint, remove the `else` or remove the new line between `else` and `if`
@@ -65,55 +65,55 @@ error: this is an `else if` but the formatting might hide it
 error: this is an `else if` but the formatting might hide it
   --> $DIR/formatting.rs:65:6
    |
-65 |       }
+LL |       }
    |  ______^
-66 | |     else
-67 | |     if foo() { // the span of the above error should continue here
+LL | |     else
+LL | |     if foo() { // the span of the above error should continue here
    | |____^
    |
    = 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:106:6
-    |
-106 |     a =- 35;
-    |      ^^^^
-    |
-    = note: `-D clippy::suspicious-assignment-formatting` implied by `-D warnings`
-    = note: to remove this lint, use either `-=` or `= -`
+  --> $DIR/formatting.rs:106:6
+   |
+LL |     a =- 35;
+   |      ^^^^
+   |
+   = 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:107:6
-    |
-107 |     a =* &191;
-    |      ^^^^
-    |
-    = note: to remove this lint, use either `*=` or `= *`
+  --> $DIR/formatting.rs:107:6
+   |
+LL |     a =* &191;
+   |      ^^^^
+   |
+   = 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:110:6
-    |
-110 |     b =! false;
-    |      ^^^^
-    |
-    = note: to remove this lint, use either `!=` or `= !`
+  --> $DIR/formatting.rs:110:6
+   |
+LL |     b =! false;
+   |      ^^^^
+   |
+   = note: to remove this lint, use either `!=` or `= !`
 
 error: possibly missing a comma here
-   --> $DIR/formatting.rs:119:19
-    |
-119 |         -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
+  --> $DIR/formatting.rs:119: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:123:19
-    |
-123 |         -1, -2, -3 // <= no comma here
-    |                   ^
-    |
-    = note: to remove this lint, add a comma or write the expr in a single line
+  --> $DIR/formatting.rs:123: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 13 previous errors