blob: 8d588a39d651b1789f739d44e0b38070fd67ae11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Test that the goto chain starting from bb0 is collapsed.
// EMIT_MIR rustc.main.SimplifyCfg-initial.diff
// EMIT_MIR rustc.main.SimplifyCfg-early-opt.diff
fn main() {
loop {
if bar() {
break;
}
}
}
#[inline(never)]
fn bar() -> bool {
true
}
|