rust/tests/ui/borrowck/clone-span-on-try-operator.rs
2023-07-10 20:09:28 +00:00

12 lines
156 B
Rust

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