summaryrefslogtreecommitdiffstats
path: root/tests/ui/moves/suggest-clone.rs
blob: 25dd9f006f9eaefe39f0507a3c41b37a203190f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
// run-rustfix

#[derive(Clone)]
struct Foo;
impl Foo {
    fn foo(self) {}
}
fn main() {
    let foo = &Foo;
    foo.foo(); //~ ERROR cannot move out
}