]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/crashes/ice-7231.rs
Rollup merge of #86263 - fee1-dead:rustdoc-layout-variants, r=camelid
[rust.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() {}