rust/tests/ui/author/loop.rs
Philipp Krones 03daf7ccb2
Fix author lint and move it back to tests/ui
The author lint is not an internal lint, and should also be enabled, when Clippy
is distributed through rustup. This moves the author lint test cases back to
tests/ui.
2024-11-07 17:22:32 +01:00

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;
}
}