2018-08-08 07:28:26 -05:00
|
|
|
error[E0594]: cannot assign to `x`, as it is not declared as mutable
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/cannot-mutate-captured-non-mut-var.rs:13:25
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let x = 1;
|
|
|
|
| - help: consider changing this to be mutable: `mut x`
|
|
|
|
LL | to_fn_once(move|| { x = 2; });
|
|
|
|
| ^^^^^ cannot assign
|
|
|
|
|
|
|
|
error[E0596]: cannot borrow `s` as mutable, as it is not declared as mutable
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/cannot-mutate-captured-non-mut-var.rs:18:25
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let s = std::io::stdin();
|
|
|
|
| - help: consider changing this to be mutable: `mut s`
|
|
|
|
LL | to_fn_once(move|| { s.read_to_end(&mut Vec::new()); });
|
|
|
|
| ^ cannot borrow as mutable
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
For more information about this error, try `rustc --explain E0596`.
|