blob: 86ce083da65e2fdeb3e2bedec1a5339271a584ee [file]
//@ run-rustfix
#[derive(Clone)]
struct Foo;
impl Foo {
fn foo(self) {}
}
fn main() {
let foo = &Foo;
foo.clone().foo(); //~ ERROR cannot move out
}