mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
161 B
Rust
12 lines
161 B
Rust
// run-rustfix
|
|
|
|
#[derive(Clone)]
|
|
struct Foo;
|
|
impl Foo {
|
|
fn foo(self) {}
|
|
}
|
|
fn main() {
|
|
let foo = &Foo;
|
|
foo.clone().foo(); //~ ERROR cannot move out
|
|
}
|