rust/tests/ui/issues/issue-75704.rs

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

8 lines
126 B
Rust
Raw Normal View History

// Caused an infinite loop during SimlifyCfg MIR transform previously.
//
// build-pass
fn main() {
loop { continue; }
}