2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2025-03-02 06:17:31 +00:00
rust-clippy/tests/ui/crashes/ice-7231.rs
2021-10-30 14:50:53 +02:00

9 lines
94 B
Rust

#![allow(clippy::never_loop)]
async fn f() {
loop {
break;
}
}
fn main() {}