summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/else_if_without_else.stderr
blob: 6f47658cfb18400f0df75a7ab24e8f10fcec8ad8 (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
error: `if` expression with an `else if`, but without a final `else`
  --> $DIR/else_if_without_else.rs:45:12
   |
LL |       } else if bla2() {
   |  ____________^
LL | |         //~ ERROR else if without else
LL | |         println!("else if");
LL | |     }
   | |_____^
   |
   = note: `-D clippy::else-if-without-else` implied by `-D warnings`
   = help: add an `else` block here

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

error: aborting due to 2 previous errors