]> git.proxmox.com Git - rustc.git/blob - src/tools/clippy/tests/ui/crashes/ice-7231.rs
New upstream version 1.54.0+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / crashes / ice-7231.rs
1 // edition:2018
2 #![allow(clippy::never_loop)]
3
4 async fn f() {
5 loop {
6 break;
7 }
8 }
9
10 fn main() {}