summary refs log tree commit diff
path: root/src/test/ui/closures/closure-immutable-outer-variable.rs
blob: 6eb43b372c96cc3bc23d5a8288c7e7cf2a49e63e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// run-rustfix

// Point at the captured immutable outer variable

fn foo(mut f: Box<dyn FnMut()>) {
    f();
}

fn main() {
    let y = true;
    foo(Box::new(move || y = false) as Box<_>);
    //~^ ERROR cannot assign to `y`, as it is not declared as mutable
}