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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
151 B
Rust
Raw Normal View History

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