mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
9 lines
94 B
Rust
9 lines
94 B
Rust
#![allow(clippy::never_loop)]
|
|
|
|
async fn f() {
|
|
loop {
|
|
break;
|
|
}
|
|
}
|
|
|
|
fn main() {}
|