mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 04:05:27 +00:00
12 lines
186 B
Plaintext
12 lines
186 B
Plaintext
//@ run-rustfix
|
|
|
|
#[derive(Clone)]
|
|
struct Foo;
|
|
impl Foo {
|
|
fn foo(self) {}
|
|
}
|
|
fn main() {
|
|
let foo = &Foo;
|
|
<Foo as Clone>::clone(&foo.clone()).foo(); //~ ERROR cannot move out
|
|
}
|