]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/borrowck-ref-mut-of-imm.stderr
Rollup merge of #106321 - compiler-errors:delayed-bug-backtrace, r=Nilstrieb
[rust.git] / tests / ui / borrowck / borrowck-ref-mut-of-imm.stderr
1 error[E0596]: cannot borrow `x.0` as mutable, as `x` is not declared as mutable
2   --> $DIR/borrowck-ref-mut-of-imm.rs:4:12
3    |
4 LL |       Some(ref mut v) => *v
5    |            ^^^^^^^^^ cannot borrow as mutable
6    |
7 help: consider changing this to be mutable
8    |
9 LL | fn destructure(mut x: Option<isize>) -> isize {
10    |                +++
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0596`.