summaryrefslogtreecommitdiffstats
path: root/src/test/ui/drop/drop-with-type-ascription-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/drop/drop-with-type-ascription-2.rs')
-rw-r--r--src/test/ui/drop/drop-with-type-ascription-2.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/test/ui/drop/drop-with-type-ascription-2.rs b/src/test/ui/drop/drop-with-type-ascription-2.rs
deleted file mode 100644
index fb70ad48e..000000000
--- a/src/test/ui/drop/drop-with-type-ascription-2.rs
+++ /dev/null
@@ -1,8 +0,0 @@
-// run-pass
-
-fn main() {
- let args = vec!["foobie", "asdf::asdf"];
- let arr: Vec<&str> = args[1].split("::").collect();
- assert_eq!(arr[0], "asdf");
- assert_eq!(arr[0], "asdf");
-}