Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
ui
/
moves
/
move-out-of-slice-1.rs
blob: 982648f5b237cc0a391a8cb2f2a11f18c18736c1 [
file
] [
log
] [
blame
]
#![
feature
(
box_patterns
)]
struct
A
;
fn
main
()
{
let
a
:
Box
<[
A
]>
=
Box
::
new
([
A
]);
match
a
{
//~ ERROR cannot move out of type `[A]`, a non-copy slice
box
[
a
]
=>
{},
_
=>
{}
}
}