2020-02-04 15:11:49 +00:00
|
|
|
error: this `else` block is redundant
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/needless_continue.rs:30:16
|
2017-04-09 12:20:14 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | } else {
|
2017-04-25 08:57:44 +00:00
|
|
|
| ________________^
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | | continue;
|
|
|
|
LL | | }
|
2017-04-25 08:57:44 +00:00
|
|
|
| |_________^
|
2017-04-09 12:20:14 +00:00
|
|
|
|
|
2020-02-04 15:11:49 +00:00
|
|
|
= help: consider dropping the `else` clause and merging the code that follows (in the loop) with the `if` block
|
|
|
|
if i % 2 == 0 && i % 3 == 0 {
|
|
|
|
println!("{}", i);
|
|
|
|
println!("{}", i + 1);
|
|
|
|
if i % 5 == 0 {
|
|
|
|
println!("{}", i + 2);
|
|
|
|
}
|
|
|
|
let i = 0;
|
|
|
|
println!("bar {} ", i);
|
|
|
|
// merged code follows:
|
|
|
|
println!("bleh");
|
|
|
|
{
|
|
|
|
println!("blah");
|
|
|
|
}
|
|
|
|
if !(!(i == 2) || !(i == 5)) {
|
|
|
|
println!("lama");
|
|
|
|
}
|
|
|
|
if (zero!(i % 2) || nonzero!(i % 5)) && i % 3 != 0 {
|
2023-08-24 19:32:12 +00:00
|
|
|
|
2020-02-04 15:11:49 +00:00
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
println!("Blabber");
|
|
|
|
println!("Jabber");
|
|
|
|
}
|
|
|
|
println!("bleh");
|
|
|
|
}
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::needless-continue` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::needless_continue)]`
|
2017-04-09 12:20:14 +00:00
|
|
|
|
2020-02-04 15:11:49 +00:00
|
|
|
error: there is no need for an explicit `else` block for this `if` expression
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/needless_continue.rs:46:9
|
2017-04-09 12:20:14 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / if (zero!(i % 2) || nonzero!(i % 5)) && i % 3 != 0 {
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | | continue;
|
|
|
|
LL | | } else {
|
|
|
|
LL | | println!("Blabber");
|
|
|
|
LL | | println!("Jabber");
|
|
|
|
LL | | }
|
2017-04-25 08:57:44 +00:00
|
|
|
| |_________^
|
2017-04-09 12:20:14 +00:00
|
|
|
|
|
2020-02-04 15:11:49 +00:00
|
|
|
= help: consider dropping the `else` clause
|
|
|
|
if (zero!(i % 2) || nonzero!(i % 5)) && i % 3 != 0 {
|
2023-08-24 19:32:12 +00:00
|
|
|
|
2020-02-04 15:11:49 +00:00
|
|
|
continue;
|
2020-02-05 09:42:33 +00:00
|
|
|
}
|
|
|
|
{
|
2020-02-04 15:11:49 +00:00
|
|
|
println!("Blabber");
|
|
|
|
println!("Jabber");
|
|
|
|
}
|
2019-03-11 18:40:30 +00:00
|
|
|
|
2021-07-29 10:16:06 +00:00
|
|
|
error: this `continue` expression is redundant
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/needless_continue.rs:60:9
|
2021-07-29 10:16:06 +00:00
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | continue;
|
2021-07-29 10:16:06 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider dropping the `continue` expression
|
|
|
|
|
|
|
|
error: this `continue` expression is redundant
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/needless_continue.rs:68:9
|
2021-07-29 10:16:06 +00:00
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | continue;
|
2021-07-29 10:16:06 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider dropping the `continue` expression
|
|
|
|
|
|
|
|
error: this `continue` expression is redundant
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/needless_continue.rs:76:9
|
2021-07-29 10:16:06 +00:00
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | continue
|
2021-07-29 10:16:06 +00:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider dropping the `continue` expression
|
|
|
|
|
|
|
|
error: this `continue` expression is redundant
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/needless_continue.rs:85:9
|
2021-07-29 10:16:06 +00:00
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | continue
|
2021-07-29 10:16:06 +00:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider dropping the `continue` expression
|
|
|
|
|
2020-02-04 15:11:49 +00:00
|
|
|
error: this `else` block is redundant
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/needless_continue.rs:136:24
|
2019-03-11 18:40:30 +00:00
|
|
|
|
|
|
|
|
LL | } else {
|
|
|
|
| ________________________^
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
|
|
|
LL | | continue 'inner;
|
2019-03-11 18:40:30 +00:00
|
|
|
LL | | }
|
|
|
|
| |_________________^
|
|
|
|
|
|
2020-02-04 15:11:49 +00:00
|
|
|
= help: consider dropping the `else` clause and merging the code that follows (in the loop) with the `if` block
|
|
|
|
if condition() {
|
|
|
|
println!("bar-3");
|
|
|
|
// merged code follows:
|
|
|
|
println!("bar-4");
|
|
|
|
update_condition();
|
|
|
|
if condition() {
|
2023-08-24 19:32:12 +00:00
|
|
|
|
|
|
|
continue;
|
2020-02-04 15:11:49 +00:00
|
|
|
} else {
|
|
|
|
println!("bar-5");
|
|
|
|
}
|
|
|
|
println!("bar-6");
|
|
|
|
}
|
2019-03-11 18:40:30 +00:00
|
|
|
|
2020-02-04 15:11:49 +00:00
|
|
|
error: there is no need for an explicit `else` block for this `if` expression
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/needless_continue.rs:143:17
|
2019-03-11 18:40:30 +00:00
|
|
|
|
|
|
|
|
LL | / if condition() {
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
|
|
|
LL | | continue;
|
2019-03-11 18:40:30 +00:00
|
|
|
LL | | } else {
|
|
|
|
LL | | println!("bar-5");
|
|
|
|
LL | | }
|
|
|
|
| |_________________^
|
|
|
|
|
|
2020-02-04 15:11:49 +00:00
|
|
|
= help: consider dropping the `else` clause
|
|
|
|
if condition() {
|
2023-08-24 19:32:12 +00:00
|
|
|
|
|
|
|
continue;
|
2020-02-05 09:42:33 +00:00
|
|
|
}
|
|
|
|
{
|
2020-02-04 15:11:49 +00:00
|
|
|
println!("bar-5");
|
|
|
|
}
|
2019-03-11 18:40:30 +00:00
|
|
|
|
2021-07-29 10:16:06 +00:00
|
|
|
error: aborting due to 8 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|