2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2024-12-20 10:03:37 +00:00
rust-clippy/tests/ui/crashes/ice-7231.rs

10 lines
94 B
Rust
Raw Normal View History

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