about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/crashes/ice-7231.rs
blob: 873cdbb0516c531c00bc6f3e2ef99f5637370ab0 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ check-pass

#![allow(clippy::never_loop)]

async fn f() {
    loop {
        break;
    }
}

fn main() {}