2019-03-11 18:40:30 +00:00
|
|
|
#![warn(clippy::needless_continue)]
|
2022-10-02 19:13:22 +00:00
|
|
|
#![allow(clippy::uninlined_format_args)]
|
2019-03-11 18:40:30 +00:00
|
|
|
|
2017-04-09 12:20:14 +00:00
|
|
|
macro_rules! zero {
|
2018-12-09 22:26:16 +00:00
|
|
|
($x:expr) => {
|
|
|
|
$x == 0
|
|
|
|
};
|
2017-04-09 12:20:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! nonzero {
|
2018-12-09 22:26:16 +00:00
|
|
|
($x:expr) => {
|
|
|
|
!zero!($x)
|
|
|
|
};
|
2017-04-09 12:20:14 +00:00
|
|
|
}
|
|
|
|
|
2021-07-21 03:23:22 +00:00
|
|
|
#[allow(clippy::nonminimal_bool)]
|
2017-04-09 12:20:14 +00:00
|
|
|
fn main() {
|
|
|
|
let mut i = 1;
|
|
|
|
while i < 10 {
|
|
|
|
i += 1;
|
|
|
|
|
|
|
|
if i % 2 == 0 && i % 3 == 0 {
|
|
|
|
println!("{}", i);
|
2018-12-09 22:26:16 +00:00
|
|
|
println!("{}", i + 1);
|
2017-04-09 12:20:14 +00:00
|
|
|
if i % 5 == 0 {
|
2018-12-09 22:26:16 +00:00
|
|
|
println!("{}", i + 2);
|
2017-04-09 12:20:14 +00:00
|
|
|
}
|
|
|
|
let i = 0;
|
|
|
|
println!("bar {} ", i);
|
|
|
|
} else {
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: this `else` block is redundant
|
2017-04-09 12:20:14 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
println!("bleh");
|
|
|
|
{
|
|
|
|
println!("blah");
|
|
|
|
}
|
|
|
|
|
|
|
|
// some comments that also should ideally be included in the
|
|
|
|
// output of the lint suggestion if possible.
|
|
|
|
if !(!(i == 2) || !(i == 5)) {
|
|
|
|
println!("lama");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (zero!(i % 2) || nonzero!(i % 5)) && i % 3 != 0 {
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: there is no need for an explicit `else` block for this `if` expression
|
2017-04-09 12:20:14 +00:00
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
println!("Blabber");
|
|
|
|
println!("Jabber");
|
|
|
|
}
|
|
|
|
|
|
|
|
println!("bleh");
|
|
|
|
}
|
|
|
|
}
|
2019-03-11 18:40:30 +00:00
|
|
|
|
2021-07-29 10:16:06 +00:00
|
|
|
fn simple_loop() {
|
|
|
|
loop {
|
2023-07-28 18:40:44 +00:00
|
|
|
continue;
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: this `continue` expression is redundant
|
2021-07-29 10:16:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn simple_loop2() {
|
|
|
|
loop {
|
|
|
|
println!("bleh");
|
2023-07-28 18:40:44 +00:00
|
|
|
continue;
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: this `continue` expression is redundant
|
2021-07-29 10:16:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[rustfmt::skip]
|
|
|
|
fn simple_loop3() {
|
|
|
|
loop {
|
2023-07-28 18:40:44 +00:00
|
|
|
continue
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: this `continue` expression is redundant
|
2021-07-29 10:16:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[rustfmt::skip]
|
|
|
|
fn simple_loop4() {
|
|
|
|
loop {
|
|
|
|
println!("bleh");
|
2023-07-28 18:40:44 +00:00
|
|
|
continue
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: this `continue` expression is redundant
|
2021-07-29 10:16:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-11 18:40:30 +00:00
|
|
|
mod issue_2329 {
|
|
|
|
fn condition() -> bool {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
fn update_condition() {}
|
|
|
|
|
|
|
|
// only the outer loop has a label
|
|
|
|
fn foo() {
|
|
|
|
'outer: loop {
|
|
|
|
println!("Entry");
|
|
|
|
while condition() {
|
|
|
|
update_condition();
|
|
|
|
if condition() {
|
|
|
|
println!("foo-1");
|
|
|
|
} else {
|
|
|
|
continue 'outer; // should not lint here
|
|
|
|
}
|
|
|
|
println!("foo-2");
|
|
|
|
|
|
|
|
update_condition();
|
|
|
|
if condition() {
|
|
|
|
continue 'outer; // should not lint here
|
|
|
|
} else {
|
|
|
|
println!("foo-3");
|
|
|
|
}
|
|
|
|
println!("foo-4");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// both loops have labels
|
|
|
|
fn bar() {
|
|
|
|
'outer: loop {
|
|
|
|
println!("Entry");
|
|
|
|
'inner: while condition() {
|
|
|
|
update_condition();
|
|
|
|
if condition() {
|
|
|
|
println!("bar-1");
|
|
|
|
} else {
|
|
|
|
continue 'outer; // should not lint here
|
|
|
|
}
|
|
|
|
println!("bar-2");
|
|
|
|
|
|
|
|
update_condition();
|
|
|
|
if condition() {
|
|
|
|
println!("bar-3");
|
|
|
|
} else {
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: this `else` block is redundant
|
2023-07-28 18:40:44 +00:00
|
|
|
continue 'inner;
|
2019-03-11 18:40:30 +00:00
|
|
|
}
|
|
|
|
println!("bar-4");
|
|
|
|
|
|
|
|
update_condition();
|
|
|
|
if condition() {
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: there is no need for an explicit `else` block for this `if` ex
|
2023-07-28 18:40:44 +00:00
|
|
|
continue;
|
2019-03-11 18:40:30 +00:00
|
|
|
} else {
|
|
|
|
println!("bar-5");
|
|
|
|
}
|
|
|
|
println!("bar-6");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|