]> git.lizzy.rs Git - rust.git/blob - src/test/rustfix/closure-immutable-outer-variable.fixed
Rollup merge of #56594 - sdroege:c_void-is-not-never, r=TimNN
[rust.git] / src / test / rustfix / closure-immutable-outer-variable.fixed
1 // Point at the captured immutable outer variable
2
3 fn foo(mut f: Box<FnMut()>) {
4     f();
5 }
6
7 fn main() {
8     let mut y = true;
9     foo(Box::new(move || y = false) as Box<_>);
10 }