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