Sign in
rust
/
rust
/
9b1f20d20dc00a950f99a00a34be9d2ca78d1f0d
/
.
/
tests
/
mir-opt
/
return_an_array.rs
blob: 673b5df7d7303da1a1931b3802078d201528c0a9 [
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
()
{}