summaryrefslogtreecommitdiffstats
path: root/tests/ui/did_you_mean/issue-34126.stderr
blob: 5343acea4adc96be3c88698ac08b0aa0698ded17 (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
29
30
31
error[E0596]: cannot borrow `self` as mutable, as it is not declared as mutable
  --> $DIR/issue-34126.rs:6:18
   |
LL |         self.run(&mut self);
   |                  ^^^^^^^^^ cannot borrow as mutable
   |
note: the binding is already a mutable borrow
  --> $DIR/issue-34126.rs:5:14
   |
LL |     fn start(&mut self) {
   |              ^^^^^^^^^
help: try removing `&mut` here
   |
LL -         self.run(&mut self);
LL +         self.run(self);
   |

error[E0502]: cannot borrow `self` as mutable because it is also borrowed as immutable
  --> $DIR/issue-34126.rs:6:18
   |
LL |         self.run(&mut self);
   |         ---------^^^^^^^^^-
   |         |    |   |
   |         |    |   mutable borrow occurs here
   |         |    immutable borrow later used by call
   |         immutable borrow occurs here

error: aborting due to 2 previous errors

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