summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/suggest-local-var-imm-and-mut.stderr
blob: eb934e7b72b084a6266998d1617113b2a1d586a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
error[E0502]: cannot borrow `*self` as mutable because it is also borrowed as immutable
  --> $DIR/suggest-local-var-imm-and-mut.rs:12:22
   |
LL |             self.foo(self.bar());
   |             ---------^^^^^^^^^^-
   |             |    |   |
   |             |    |   mutable borrow occurs here
   |             |    immutable borrow later used by call
   |             immutable borrow occurs here

error[E0502]: cannot borrow `*self` as mutable because it is also borrowed as immutable
  --> $DIR/suggest-local-var-imm-and-mut.rs:24:29
   |
LL |             Self::foo(self, Self::bar(self));
   |             --------- ----  ^^^^^^^^^^^^^^^ mutable borrow occurs here
   |             |         |
   |             |         immutable borrow occurs here
   |             immutable borrow later used by call

error: aborting due to 2 previous errors

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