]> git.lizzy.rs Git - rust.git/blob - src/test/rustfix/closure-immutable-outer-variable.fixed
Use better bound names in `-Zverbose` mode
[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 }