rust/tests/ui/nll/assign-while-to-immutable.rs
2024-02-16 20:02:50 +00:00

12 lines
242 B
Rust

// We used to incorrectly assign to `x` twice when generating MIR for this
// function, preventing this from compiling.
//@ check-pass
fn main() {
let x: () = while false {
break;
};
let y: () = 'l: while break 'l {};
}