mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
9 lines
261 B
Rust
9 lines
261 B
Rust
// Test that we are able to infer a suitable kind for this closure
|
|
// that is just called (`FnMut`).
|
|
|
|
fn main() {
|
|
let mut counter = 0;
|
|
let tick = || counter += 1;
|
|
tick(); //~ ERROR cannot borrow `tick` as mutable, as it is not declared as mutable
|
|
}
|