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