Sign in
rust
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
moves
/
array-copy-move.rs
blob: ea95bc06a3693ef9bf584f188f61fda834d284dc [
file
] [
log
] [
blame
] [
edit
]
//! regression test for issue https://github.com/rust-lang/rust/issues/16783
//@ run-pass
#![
allow
(
unused_variables
)]
pub
fn
main
()
{
let
x
=
[
1
,
2
,
3
];
let
y
=
x
;
}