]> git.lizzy.rs Git - rust.git/blob - src/test/ui/cannot-mutate-captured-non-mut-var.ast.nll.stderr
Remove licenses
[rust.git] / src / test / ui / cannot-mutate-captured-non-mut-var.ast.nll.stderr
1 error[E0594]: cannot assign to `x`, as it is not declared as mutable
2   --> $DIR/cannot-mutate-captured-non-mut-var.rs:13:25
3    |
4 LL |     let x = 1;
5    |         - help: consider changing this to be mutable: `mut x`
6 LL |     to_fn_once(move|| { x = 2; });
7    |                         ^^^^^ cannot assign
8
9 error[E0596]: cannot borrow `s` as mutable, as it is not declared as mutable
10   --> $DIR/cannot-mutate-captured-non-mut-var.rs:18:25
11    |
12 LL |     let s = std::io::stdin();
13    |         - help: consider changing this to be mutable: `mut s`
14 LL |     to_fn_once(move|| { s.read_to_end(&mut Vec::new()); });
15    |                         ^ cannot borrow as mutable
16
17 error: aborting due to 2 previous errors
18
19 Some errors occurred: E0594, E0596.
20 For more information about an error, try `rustc --explain E0594`.