]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-33819.stderr
Auto merge of #49799 - hdhoang:46205_deny_incoherent_fundamental_impls, r=nikomatsakis
[rust.git] / src / test / ui / issues / 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    |                                  try removing `&mut` here
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0596`.