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, 8 insertions, 0 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
new file mode 100644
index 000000000..fb70ad48e
--- /dev/null
+++ b/src/test/ui/drop/drop-with-type-ascription-2.rs
@@ -0,0 +1,8 @@
+// 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");
+}