summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/issue-46023.rs
blob: a923eb24421010995c5cc203d49e4893ad4690fb (plain)
1
2
3
4
5
6
7
8
fn main() {
    let x = 0;

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