summaryrefslogtreecommitdiffstats
path: root/src/test/ui/moves/move-arg.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/moves/move-arg.rs')
-rw-r--r--src/test/ui/moves/move-arg.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/test/ui/moves/move-arg.rs b/src/test/ui/moves/move-arg.rs
deleted file mode 100644
index 5942cd89f..000000000
--- a/src/test/ui/moves/move-arg.rs
+++ /dev/null
@@ -1,5 +0,0 @@
-// run-pass
-
-fn test(foo: isize) { assert_eq!(foo, 10); }
-
-pub fn main() { let x = 10; test(x); }