mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
264 B
Rust
15 lines
264 B
Rust
// 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`
|
|
});
|
|
}
|