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