rust/tests/ui/moves/suggest-clone.rs
2024-02-16 20:02:50 +00:00

12 lines
154 B
Rust

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