blob: 53516f4f24713905d8b025bf963697ac01137e39 [file] [log] [blame]
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();
}