mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
12 lines
178 B
Rust
12 lines
178 B
Rust
//@ run-rustfix
|
|
|
|
#[derive(Clone)]
|
|
struct Foo;
|
|
impl Foo {
|
|
fn foo(self) {}
|
|
}
|
|
fn main() {
|
|
let foo = &Foo;
|
|
<Foo as Clone>::clone(&foo).foo(); //~ ERROR cannot move out
|
|
}
|