blob: 174ad245d59fe83af5d5c744184f43f2ef268c2d [file] [log] [blame]
// 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`
});
}