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