rust-clippy/tests/ui/else_if_without_else.stderr

53 lines
1.3 KiB
Text
Raw Normal View History

2020-01-06 06:36:33 +00:00
error: `if` expression with an `else if`, but without a final `else`
--> tests/ui/else_if_without_else.rs:51:12
2017-12-16 20:37:44 +00:00
|
2018-12-27 15:57:55 +00:00
LL | } else if bla2() {
2017-12-16 20:37:44 +00:00
| ____________^
LL | |
2018-12-27 15:57:55 +00:00
LL | | println!("else if");
LL | | }
2018-11-27 14:27:34 +00:00
| |_____^
2017-12-16 20:37:44 +00:00
|
2018-11-27 14:27:34 +00:00
= help: add an `else` block here
2022-09-22 16:04:22 +00:00
= note: `-D clippy::else-if-without-else` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::else_if_without_else)]`
2017-12-16 20:37:44 +00:00
2020-01-06 06:36:33 +00:00
error: `if` expression with an `else if`, but without a final `else`
--> tests/ui/else_if_without_else.rs:60:12
2017-12-16 20:37:44 +00:00
|
2018-12-27 15:57:55 +00:00
LL | } else if bla3() {
2017-12-16 20:37:44 +00:00
| ____________^
LL | |
2018-12-27 15:57:55 +00:00
LL | | println!("else if 2");
LL | | }
2018-11-27 14:27:34 +00:00
| |_____^
|
= help: add an `else` block here
2017-12-16 20:37:44 +00:00
error: `if` expression with an `else if`, but without a final `else`
--> tests/ui/else_if_without_else.rs:87:12
|
LL | } else if bla5() {
| ____________^
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:117:16
|
LL | } else if bla5() {
| ________________^
LL | |
LL | | println!("else if 4");
LL | | }
| |_________^
|
= help: add an `else` block here
error: aborting due to 4 previous errors
2018-01-16 16:06:27 +00:00