summary refs log tree commit diff
path: root/src/test/ui/issue-33819.stderr
blob: bb8a542b12be6961ed5623db478e6b4d0b58a2fb (plain)
1
2
3
4
5
6
7
8
9
error[E0596]: cannot borrow immutable local variable `v` as mutable
  --> $DIR/issue-33819.rs:13:39
   |
LL |         Some(ref v) => { let a = &mut v; },
   |                                       ^ cannot borrow mutably

error: aborting due to previous error

For more information about this error, try `rustc --explain E0596`.