rust/tests/ui/moves/suggest-clone.rs
2023-01-11 09:32:08 +00:00

12 lines
153 B
Rust

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