blob: 923c2ad61164e8493a7b5f246d7256fccffb3181 [file] [log] [blame]
// https://github.com/rust-lang/rust/issues/66702
// Breaks with values inside closures used to ICE (#66863)
fn main() {
'some_label: loop {
|| break 'some_label ();
//~^ ERROR: use of unreachable label `'some_label`
//~| ERROR: `break` inside of a closure
}
}