mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
40 lines
578 B
Rust
40 lines
578 B
Rust
#![feature(stmt_expr_attributes)]
|
|
#![allow(
|
|
clippy::never_loop,
|
|
clippy::while_immutable_condition,
|
|
clippy::redundant_pattern_matching
|
|
)]
|
|
|
|
fn main() {
|
|
#[clippy::author]
|
|
for y in 0..10 {
|
|
let z = y;
|
|
}
|
|
|
|
#[clippy::author]
|
|
for _ in 0..10 {
|
|
break;
|
|
}
|
|
|
|
#[clippy::author]
|
|
'label: for _ in 0..10 {
|
|
break 'label;
|
|
}
|
|
|
|
let a = true;
|
|
|
|
#[clippy::author]
|
|
while a {
|
|
break;
|
|
}
|
|
|
|
#[clippy::author]
|
|
while let true = a {
|
|
break;
|
|
}
|
|
|
|
#[clippy::author]
|
|
loop {
|
|
break;
|
|
}
|
|
}
|