mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00
9 lines
177 B
Rust
9 lines
177 B
Rust
// https://github.com/rust-lang/rust/issues/75704
|
|
// Caused an infinite loop during SimlifyCfg MIR transform previously.
|
|
//
|
|
//@ build-pass
|
|
|
|
fn main() {
|
|
loop { continue; }
|
|
}
|