Sign in
fuchsia
/
third_party
/
rust
/
79e46694de009c8c826cafecb85f2bd3377b303a
/
.
/
tests
/
ui
/
pattern
/
bindings-after-at
/
bind-by-move-no-subbindings-fun-param.rs
blob: 1816a74a0ba3d02a15b3ea3ec4c95399db256070 [
file
]
// See issue #12534.
fn
main
()
{}
struct
A
(
Box
<
u8
>);
fn
f
(
a
@
A
(
u
):
A
)
->
Box
<
u8
>
{
//~^ ERROR use of partially moved value
drop
(
a
);
u
}