]> git.lizzy.rs Git - rust.git/blob - tests/ui/crashes/ice-7231.rs
5595d8d1d626978d136f7c61e26daa74a07010dd
[rust.git] / 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() {}