mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-17 02:54:26 +00:00
10 lines
94 B
Rust
10 lines
94 B
Rust
#![allow(clippy::never_loop)]
|
|
|
|
async fn f() {
|
|
loop {
|
|
break;
|
|
}
|
|
}
|
|
|
|
fn main() {}
|