mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
12 lines
157 B
Rust
12 lines
157 B
Rust
![]() |
//@ run-rustfix
|
||
|
|
||
|
#[derive(Clone)]
|
||
|
struct Foo;
|
||
|
impl Foo {
|
||
|
fn foo(self) {}
|
||
|
}
|
||
|
fn main() {
|
||
|
let foo = &Foo;
|
||
|
(*foo).foo(); //~ ERROR cannot move out
|
||
|
}
|