blob: e53f15b8e9d8d2d200ff8eb3ed99a7592cfa2903 [file]
//@ edition:2015..2021
struct Foo {
x: isize,
}
pub fn main() {
let mut this = &mut Foo {
x: 1,
};
let mut r = || {
let p = &this.x;
&mut this.x; //~ ERROR cannot borrow
p.use_ref();
};
r()
}
trait Fake { fn use_mut(&mut self) { } fn use_ref(&self) { } }
impl<T> Fake for T { }