mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-18 02:38:28 +00:00
10 lines
110 B
Rust
10 lines
110 B
Rust
// edition:2018
|
|
#![allow(clippy::never_loop)]
|
|
|
|
async fn f() {
|
|
loop {
|
|
break;
|
|
}
|
|
}
|
|
|
|
fn main() {}
|