mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
62548f447c
The test program contains both conditions tested by the lint, i.e., a redundant continue in the `if` and `else` blocks within a loop. Maybe splitting them out and also having a program that should *not* trigger the lint warning is better.
50 lines
1,022 B
Rust
50 lines
1,022 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
|
|
macro_rules! zero {
|
|
($x:expr) => ($x == 0);
|
|
}
|
|
|
|
macro_rules! nonzero {
|
|
($x:expr) => (!zero!($x));
|
|
}
|
|
|
|
#[deny(needless_continue)]
|
|
fn main() {
|
|
let mut i = 1;
|
|
while i < 10 {
|
|
i += 1;
|
|
|
|
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);
|
|
} else {
|
|
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 {
|
|
continue;
|
|
} else {
|
|
println!("Blabber");
|
|
println!("Jabber");
|
|
}
|
|
|
|
println!("bleh");
|
|
}
|
|
}
|