Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
moves
/
suggest-clone.rs
blob: 0b3c5e283d2ca302c19b916199471982288c62b1 [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
#[
derive
(
Clone
)]
struct
Foo
;
impl
Foo
{
fn
foo
(
self
)
{}
}
fn
main
()
{
let
foo
=
&
Foo
;
foo
.
foo
();
//~ ERROR cannot move out
}