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; } }