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