rust/tests/ui/needless_continue.stderr

102 lines
3.0 KiB
Plaintext
Raw Normal View History

2020-01-06 00:36:33 -06:00
error: This `else` block is redundant.
2019-03-11 13:40:30 -05:00
--> $DIR/needless_continue.rs:28:16
|
2018-12-27 09:57:55 -06:00
LL | } else {
| ________________^
2018-12-27 09:57:55 -06:00
LL | | continue;
LL | | }
| |_________^
|
= note: `-D clippy::needless-continue` implied by `-D warnings`
2020-01-06 00:36:33 -06: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 {
println!("{}", i);
2018-12-09 23:27:19 -06:00
println!("{}", i + 1);
if i % 5 == 0 {
2018-12-09 23:27:19 -06:00
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");
}
error: There is no need for an explicit `else` block for this `if` expression
2019-03-11 13:40:30 -05:00
--> $DIR/needless_continue.rs:43:9
|
2018-12-27 09:57:55 -06:00
LL | / if (zero!(i % 2) || nonzero!(i % 5)) && i % 3 != 0 {
LL | | continue;
LL | | } else {
LL | | println!("Blabber");
LL | | println!("Jabber");
LL | | }
| |_________^
|
2020-01-06 00:36:33 -06: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");
...
2020-01-06 00:36:33 -06:00
error: This `else` block is redundant.
2019-03-11 13:40:30 -05:00
--> $DIR/needless_continue.rs:100:24
|
LL | } else {
| ________________________^
LL | | continue 'inner; // should lint here
LL | | }
| |_________________^
|
2020-01-06 00:36:33 -06:00
= help: Consider dropping the `else` clause and merging the code that follows (in the loop) with the `if` block, like so:
2019-03-11 13:40:30 -05:00
if condition() {
println!("bar-3");
// Merged code follows...println!("bar-4");
update_condition();
if condition() {
continue; // should lint here
} else {
println!("bar-5");
}
println!("bar-6");
}
error: There is no need for an explicit `else` block for this `if` expression
--> $DIR/needless_continue.rs:106:17
|
LL | / if condition() {
LL | | continue; // should lint here
LL | | } else {
LL | | println!("bar-5");
LL | | }
| |_________________^
|
2020-01-06 00:36:33 -06:00
= help: Consider dropping the `else` clause, and moving out the code in the `else` block, like so:
2019-03-11 13:40:30 -05:00
if condition() {
continue;
}
println!("bar-5");
...
error: aborting due to 4 previous errors
2018-01-16 10:06:27 -06:00