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