mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
22 lines
609 B
Rust
22 lines
609 B
Rust
//@ forbid-output: &mut mut self
|
|
|
|
struct Struct;
|
|
|
|
impl Struct {
|
|
fn foo(&mut self) {
|
|
(&mut self).bar(); //~ ERROR cannot borrow
|
|
//~^ HELP try removing `&mut` here
|
|
}
|
|
|
|
// In this case we could keep the suggestion, but to distinguish the
|
|
// two cases is pretty hard. It's an obscure case anyway.
|
|
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
|
|
//~^ HELP try removing `&mut` here
|
|
}
|
|
}
|
|
|
|
fn main () {}
|