blob: 89ac402b5e02b8928a0a95e10005976251fc95bb [file] [log] [blame]
error[E0596]: cannot borrow `tick1` as mutable, as it is not declared as mutable
--> $DIR/unboxed-closures-infer-fnmut-calling-fnmut-no-mut.rs:17:9
|
LL | let tick1 = || {
| ----- help: consider changing this to be mutable: `mut tick1`
...
LL | tick1();
| ^^^^^ cannot borrow as mutable
error[E0596]: cannot borrow `tick2` as mutable, as it is not declared as mutable
--> $DIR/unboxed-closures-infer-fnmut-calling-fnmut-no-mut.rs:20:5
|
LL | let tick2 = || { //~ ERROR closure cannot assign to immutable local variable `tick1`
| ----- help: consider changing this to be mutable: `mut tick2`
...
LL | tick2(); //~ ERROR cannot borrow
| ^^^^^ cannot borrow as mutable
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0596`.