Sign in
rust
/
rust
/
d7e8f9fc7af4aa4cd65140afaebe48dd1e90e708
/
.
/
tests
/
ui
/
moves
/
suggest-clone.fixed
blob: 86ce083da65e2fdeb3e2bedec1a5339271a584ee [
file
]
//@ run-rustfix
#[derive(Clone)]
struct
Foo
;
impl
Foo
{
fn foo
(
self
)
{}
}
fn main
()
{
let
foo
=
&
Foo
;
foo
.
clone
().
foo
();
//~ ERROR cannot move out
}