summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/suspicious_else_formatting.stderr
blob: 2e512b47f1236396ab42b8baa08573e9274d5cc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
error: this looks like an `else {..}` but the `else` is missing
  --> $DIR/suspicious_else_formatting.rs:17:6
   |
LL |     } {
   |      ^
   |
   = note: to remove this lint, add the missing `else` or add a new line before the next block
   = note: `-D clippy::suspicious-else-formatting` implied by `-D warnings`

error: this looks like an `else if` but the `else` is missing
  --> $DIR/suspicious_else_formatting.rs:21:6
   |
LL |     } if foo() {
   |      ^
   |
   = 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/suspicious_else_formatting.rs:28:10
   |
LL |         } if foo() {
   |          ^
   |
   = 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/suspicious_else_formatting.rs:36:10
   |
LL |         } if foo() {
   |          ^
   |
   = 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/suspicious_else_formatting.rs:45: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 if` but the formatting might hide it
  --> $DIR/suspicious_else_formatting.rs:57:6
   |
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 is an `else if` but the formatting might hide it
  --> $DIR/suspicious_else_formatting.rs:62:6
   |
LL |       }
   |  ______^
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 is an `else {..}` but the formatting might hide it
  --> $DIR/suspicious_else_formatting.rs:89:6
   |
LL |       }
   |  ______^
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 {..}` but the formatting might hide it
  --> $DIR/suspicious_else_formatting.rs:97:6
   |
LL |       }
   |  ______^
LL | |     else
LL | |
LL | |     {
   | |____^
   |
   = note: to remove this lint, remove the `else` or remove the new line between `else` and `{..}`

error: aborting due to 9 previous errors