]> git.proxmox.com Git - rustc.git/blobdiff - src/test/mir-opt/return_an_array.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / src / test / mir-opt / return_an_array.rs
diff --git a/src/test/mir-opt/return_an_array.rs b/src/test/mir-opt/return_an_array.rs
deleted file mode 100644 (file)
index bea3c31..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-// this tests move up progration, which is not yet implemented
-
-fn foo() -> [u8; 1024] {
-        let x = [0; 1024];
-        return x;
-}
-
-fn main() { }