Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
nll
/
issue-52669.rs
blob: e33528ac59e68293b8110f65dd93795be2357eee [
file
] [
log
] [
blame
] [
edit
]
struct
A
{
b
:
B
,
}
#[
derive
(
Clone
)]
struct
B
;
fn
foo
(
_
:
A
)
{}
fn
bar
(
mut
a
:
A
)
->
B
{
a
.
b
=
B
;
foo
(
a
);
a
.
b
.
clone
()
//~^ ERROR borrow of moved value
}
fn
main
()
{}