blob: e33528ac59e68293b8110f65dd93795be2357eee [file] [log] [blame]
struct A {
b: B,
}
#[derive(Clone)]
struct B;
fn foo(_: A) {}
fn bar(mut a: A) -> B {
a.b = B;
foo(a);
a.b.clone()
//~^ ERROR borrow of moved value
}
fn main() {}