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() {}