Skip to content

Commit

Permalink
remove allow(unconditional_recursion)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibraheemdev committed Jul 27, 2021
1 parent 880e691 commit df5e516
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/test/ui/nll/issue-51191.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#![allow(unconditional_recursion)]

struct Struct;

impl Struct {
fn bar(self: &mut Self) {
//~^ WARN function cannot return without recursing
//~^^ HELP a `loop` may express intention better if this is on purpose
(&mut self).bar();
//~^ ERROR cannot borrow `self` as mutable, as it is not declared as mutable [E0596]
//~^^ HELP try removing `&mut` here
Expand Down
14 changes: 13 additions & 1 deletion src/test/ui/nll/issue-51191.stderr
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
warning: function cannot return without recursing
--> $DIR/issue-51191.rs:4:5
|
LL | fn bar(self: &mut Self) {
| ^^^^^^^^^^^^^^^^^^^^^^^ cannot return without recursing
...
LL | (&mut self).bar();
| ----------------- recursive call site
|
= note: `#[warn(unconditional_recursion)]` on by default
= help: a `loop` may express intention better if this is on purpose

error[E0596]: cannot borrow `self` as mutable, as it is not declared as mutable
--> $DIR/issue-51191.rs:7:9
|
Expand Down Expand Up @@ -36,6 +48,6 @@ LL | (&mut self).bar();
| cannot borrow as mutable
| help: try removing `&mut` here

error: aborting due to 5 previous errors
error: aborting due to 5 previous errors; 1 warning emitted

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

0 comments on commit df5e516

Please sign in to comment.