mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
261 B
Rust
14 lines
261 B
Rust
//@ 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 = !y) as Box<_>);
|
|
//~^ ERROR cannot assign to `y`, as it is not declared as mutable
|
|
}
|