]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/issue-33819.stderr
Rollup merge of #106644 - alexcrichton:update-wasi-toolchain, r=cuviper
[rust.git] / tests / ui / borrowck / issue-33819.stderr
1 error[E0596]: cannot borrow `v` as mutable, as it is not declared as mutable
2   --> $DIR/issue-33819.rs:4:34
3    |
4 LL |         Some(ref v) => { let a = &mut v; },
5    |                                  ^^^^^^
6    |                                  |
7    |                                  cannot borrow as mutable
8    |                                  help: try removing `&mut` here
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0596`.