]> git.proxmox.com Git - rustc.git/blame - src/test/ui/borrowck/borrowck-auto-mut-ref-to-immut-var.nll.stderr
New upstream version 1.35.0+dfsg1
[rustc.git] / src / test / ui / borrowck / borrowck-auto-mut-ref-to-immut-var.nll.stderr
CommitLineData
b7449926 1error[E0596]: cannot borrow `x` as mutable, as it is not declared as mutable
0731742a 2 --> $DIR/borrowck-auto-mut-ref-to-immut-var.rs:15:5
b7449926
XL
3 |
4LL | let x = Foo { x: 3 };
5 | - help: consider changing this to be mutable: `mut x`
532ac7d7 6LL | x.printme();
b7449926
XL
7 | ^ cannot borrow as mutable
8
9error: aborting due to previous error
10
11For more information about this error, try `rustc --explain E0596`.