about summary refs log tree commit diff
path: root/tests/ui/loops/infinite-loop-simplify-cfg-75704.rs
blob: 8bc5fba7a6833342283e33d05ec628ede74f96e5 (plain)
1
2
3
4
5
6
7
8
// https://github.com/rust-lang/rust/issues/75704
// Caused an infinite loop during SimlifyCfg MIR transform previously.
//
//@ build-pass

fn main() {
    loop { continue; }
}