Sign in
rust
/
rust
/
4dfd30ec844e10b8993deebb908fddff25c2ef26
/
.
/
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
()
{}