about summary refs log tree commit diff
path: root/tests/ui/nll/issue-46589.nll.stderr
blob: f2d08d1f4c834b62a9232c9f720c9b784927c4f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0499]: cannot borrow `**other` as mutable more than once at a time
  --> $DIR/issue-46589.rs:25:21
   |
LL |         *other = match (*other).get_self() {
   |                        -------- first mutable borrow occurs here
LL |             Some(s) => s,
LL |             None => (*other).new_self()
   |                     ^^^^^^^^
   |                     |
   |                     second mutable borrow occurs here
   |                     first borrow later used here

error: aborting due to 1 previous error

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