]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/issue-51191.stderr
fix merge conflicts
[rust.git] / src / test / ui / nll / issue-51191.stderr
1 warning: function cannot return without recursing
2   --> $DIR/issue-51191.rs:4:5
3    |
4 LL |     fn bar(self: &mut Self) {
5    |     ^^^^^^^^^^^^^^^^^^^^^^^ cannot return without recursing
6 LL |
7 LL |         (&mut self).bar();
8    |         ----------------- recursive call site
9    |
10    = note: #[warn(unconditional_recursion)] on by default
11    = help: a `loop` may express intention better if this is on purpose
12
13 error[E0596]: cannot borrow `self` as mutable, as it is not declared as mutable
14   --> $DIR/issue-51191.rs:6:9
15    |
16 LL |         (&mut self).bar();
17    |         ^^^^^^^^^^^
18    |         |
19    |         cannot borrow as mutable
20    |         try removing `&mut` here
21
22 error[E0596]: cannot borrow `self` as mutable, as it is not declared as mutable
23   --> $DIR/issue-51191.rs:11:9
24    |
25 LL |     fn imm(self) {
26    |            ---- help: consider changing this to be mutable: `mut self`
27 LL |         (&mut self).bar();
28    |         ^^^^^^^^^^^ cannot borrow as mutable
29
30 error[E0596]: cannot borrow `self` as mutable, as it is not declared as mutable
31   --> $DIR/issue-51191.rs:20:9
32    |
33 LL |         (&mut self).bar();
34    |         ^^^^^^^^^^^ cannot borrow as mutable
35
36 error[E0596]: cannot borrow data in a `&` reference as mutable
37   --> $DIR/issue-51191.rs:20:9
38    |
39 LL |         (&mut self).bar();
40    |         ^^^^^^^^^^^ cannot borrow as mutable
41
42 error[E0596]: cannot borrow `self` as mutable, as it is not declared as mutable
43   --> $DIR/issue-51191.rs:26:9
44    |
45 LL |         (&mut self).bar();
46    |         ^^^^^^^^^^^
47    |         |
48    |         cannot borrow as mutable
49    |         try removing `&mut` here
50
51 error: aborting due to 5 previous errors
52
53 For more information about this error, try `rustc --explain E0596`.