summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/borrowck-loan-rcvr-overloaded-op.stderr
blob: 24cc4933ef1b055efa4cf821bb90816c98ce1e46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
error[E0503]: cannot use `p` because it was mutably borrowed
  --> $DIR/borrowck-loan-rcvr-overloaded-op.rs:38:5
   |
LL |     let q = &mut p;
   |             ------ borrow of `p` occurs here
LL |
LL |     p + 3;
   |     ^ use of borrowed `p`
...
LL |     *q + 3; // OK to use the new alias `q`
   |     -- borrow later used here

error[E0502]: cannot borrow `p` as immutable because it is also borrowed as mutable
  --> $DIR/borrowck-loan-rcvr-overloaded-op.rs:39:5
   |
LL |     let q = &mut p;
   |             ------ mutable borrow occurs here
...
LL |     p.times(3);
   |     ^^^^^^^^^^ immutable borrow occurs here
LL |
LL |     *q + 3; // OK to use the new alias `q`
   |     -- mutable borrow later used here

error: aborting due to 2 previous errors

Some errors have detailed explanations: E0502, E0503.
For more information about an error, try `rustc --explain E0502`.