rust/tests/ui/unboxed-closures/unboxed-closures-mutated-upvar-from-fn-closure.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
264 B
Rust
Raw Normal View History

// Test that a by-ref `FnMut` closure gets an error when it tries to
// mutate a value.
fn call<F>(f: F) where F : Fn() {
f();
}
fn main() {
let mut counter = 0;
call(|| {
counter += 1;
//~^ ERROR cannot assign to `counter`
});
}