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