about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/else_if_without_else.stderr
blob: ac7802345b97f7bef10f53d97447bdda88afc05d (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
error: `if` expression with an `else if`, but without a final `else`
  --> tests/ui/else_if_without_else.rs:51:12
   |
LL |       } else if bla2() {
   |  ____________^
LL | |
LL | |
LL | |         println!("else if");
LL | |     }
   | |_____^
   |
   = help: add an `else` block here
   = note: `-D clippy::else-if-without-else` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::else_if_without_else)]`

error: `if` expression with an `else if`, but without a final `else`
  --> tests/ui/else_if_without_else.rs:61:12
   |
LL |       } else if bla3() {
   |  ____________^
LL | |
LL | |
LL | |         println!("else if 2");
LL | |     }
   | |_____^
   |
   = help: add an `else` block here

error: `if` expression with an `else if`, but without a final `else`
  --> tests/ui/else_if_without_else.rs:89:12
   |
LL |       } else if bla5() {
   |  ____________^
LL | |
LL | |
LL | |         println!("else if 4");
LL | |     }
   | |_____^
   |
   = help: add an `else` block here

error: `if` expression with an `else if`, but without a final `else`
  --> tests/ui/else_if_without_else.rs:120:16
   |
LL |           } else if bla5() {
   |  ________________^
LL | |
LL | |
LL | |             println!("else if 4");
LL | |         }
   | |_________^
   |
   = help: add an `else` block here

error: aborting due to 4 previous errors