rust/tests/ui/did_you_mean/issue-34126.rs

16 lines
271 B
Rust

struct Z { }
impl Z {
fn run(&self, z: &mut Z) { }
fn start(&mut self) {
self.run(&mut self); //~ ERROR cannot borrow
//~| ERROR cannot borrow
//~| HELP try removing `&mut` here
}
}
fn main() {
let mut z = Z {};
z.start();
}