mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 19:08:20 +00:00
12 lines
154 B
Rust
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
|
|
}
|