rustc/tests/ui/moves/suggest-clone.rs
2024-06-21 09:39:33 +02: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
}