mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
11 lines
355 B
Rust
11 lines
355 B
Rust
fn main() {
|
|
// This used to ICE during liveness check because `target_id` passed to
|
|
// `propagate_through_expr` would be the closure and not the `loop`, which wouldn't be found in
|
|
// `self.break_ln`. (#62480)
|
|
'a: {
|
|
|| break 'a
|
|
//~^ ERROR use of unreachable label `'a`
|
|
//~| ERROR `break` inside of a closure
|
|
}
|
|
}
|