summaryrefslogtreecommitdiffstats
path: root/src/test/mir-opt/return_an_array.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/mir-opt/return_an_array.rs')
-rw-r--r--src/test/mir-opt/return_an_array.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/test/mir-opt/return_an_array.rs b/src/test/mir-opt/return_an_array.rs
deleted file mode 100644
index bea3c317c..000000000
--- a/src/test/mir-opt/return_an_array.rs
+++ /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() { }