rust/tests/ui/nll/issue-46023.rs

9 lines
151 B
Rust

fn main() {
let x = 0;
(move || {
x = 1;
//~^ ERROR cannot assign to `x`, as it is not declared as mutable [E0594]
})()
}