2017-04-09 12:20:14 +00:00
|
|
|
error: This else block is redundant.
|
|
|
|
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/needless_continue.rs:26:16
|
2017-04-09 12:20:14 +00:00
|
|
|
|
|
|
|
|
26 | } else {
|
2017-04-25 08:57:44 +00:00
|
|
|
| ________________^
|
2017-04-09 12:20:14 +00:00
|
|
|
27 | | continue;
|
|
|
|
28 | | }
|
2017-04-25 08:57:44 +00:00
|
|
|
| |_________^
|
2017-04-09 12:20:14 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::needless-continue` implied by `-D warnings`
|
2017-04-09 12:20:14 +00:00
|
|
|
= help: Consider dropping the else clause and merging the code that follows (in the loop) with the if block, like so:
|
|
|
|
if i % 2 == 0 && i % 3 == 0 {
|
2017-04-13 19:48:52 +00:00
|
|
|
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 {
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
println!("Blabber");
|
|
|
|
println!("Jabber");
|
|
|
|
}
|
|
|
|
println!("bleh");
|
2017-04-09 12:20:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
error: There is no need for an explicit `else` block for this `if` expression
|
|
|
|
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/needless_continue.rs:41:9
|
2017-04-09 12:20:14 +00:00
|
|
|
|
|
2017-04-25 08:57:44 +00:00
|
|
|
41 | / if (zero!(i % 2) || nonzero!(i % 5)) && i % 3 != 0 {
|
2017-04-09 12:20:14 +00:00
|
|
|
42 | | continue;
|
|
|
|
43 | | } else {
|
|
|
|
44 | | println!("Blabber");
|
|
|
|
45 | | println!("Jabber");
|
|
|
|
46 | | }
|
2017-04-25 08:57:44 +00:00
|
|
|
| |_________^
|
2017-04-09 12:20:14 +00:00
|
|
|
|
|
|
|
|
= help: Consider dropping the else clause, and moving out the code in the else block, like so:
|
|
|
|
if (zero!(i % 2) || nonzero!(i % 5)) && i % 3 != 0 {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
println!("Blabber");
|
|
|
|
println!("Jabber");
|
|
|
|
...
|
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|