Sign in
rust
/
rust
/
cf79d034aa3d8f396d407aafce6f1ccd818e710e
/
.
/
tests
/
mir-opt
/
return_an_array.rs
blob: 2af48ae6a5b97d0c1c8ed090bf220a109f86c51f [
file
]
//@ skip-filecheck
// this tests move up progration, which is not yet implemented
fn
foo
()
->
[
u8
;
1024
]
{
let
x
=
[
0
;
1024
];
return
x
;
}
fn
main
()
{}