rustc/tests/ui/moves/suggest-clone.fixed
2024-06-24 14:48:22 +02:00

12 lines
186 B
Plaintext

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