Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
moves
/
move-out-of-tuple-field.rs
blob: 66912fa4d099809b8c9901f7906f6c5552b6822e [
file
] [
log
] [
blame
] [
edit
]
struct
Foo
(
Box
<
isize
>);
fn
main
()
{
let
x
:
(
Box
<
_
>,)
=
(
Box
::
new
(
1
),);
let
y
=
x
.
0
;
let
z
=
x
.
0
;
//~ ERROR use of moved value: `x.0`
let
x
=
Foo
(
Box
::
new
(
1
));
let
y
=
x
.
0
;
let
z
=
x
.
0
;
//~ ERROR use of moved value: `x.0`
}