Files
rust/tests/ui/loops/infinite-loop-simplify-cfg-75704.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
177 B
Rust
Raw Normal View History

2025-07-13 16:25:27 -04:00
// https://github.com/rust-lang/rust/issues/75704
// Caused an infinite loop during SimlifyCfg MIR transform previously.
//
//@ build-pass
fn main() {
loop { continue; }
}