about summary refs log tree commit diff
path: root/src/test/ui/array-slice-vec/vec-slice.rs
diff options
context:
space:
mode:
authorDylan DPC <dylan.dpc@gmail.com>2020-09-07 01:17:45 +0200
committerGitHub <noreply@github.com>2020-09-07 01:17:45 +0200
commite488c4f187be7f561ff24fcbdc8427767be79f1f (patch)
tree987d83025304a2d36ee86467ca272e52fb651573 /src/test/ui/array-slice-vec/vec-slice.rs
parent73dc675b9437c2a51a975a9f58cc66f05463c351 (diff)
parent2278c7255a1423b12d0efee3de43b23fa0d5b892 (diff)
downloadrust-e488c4f187be7f561ff24fcbdc8427767be79f1f.tar.gz
rust-e488c4f187be7f561ff24fcbdc8427767be79f1f.zip
Rollup merge of #76273 - CraftSpider:master, r=matklad
Move some Vec UI tests into alloc unit tests

A bit of work towards #76268, makes a number of the Vec UI tests that are simply running code into unit tests. Ensured that they are being run when testing liballoc locally.
Diffstat (limited to 'src/test/ui/array-slice-vec/vec-slice.rs')
-rw-r--r--src/test/ui/array-slice-vec/vec-slice.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/test/ui/array-slice-vec/vec-slice.rs b/src/test/ui/array-slice-vec/vec-slice.rs
deleted file mode 100644
index 1f090ddd9c9..00000000000
--- a/src/test/ui/array-slice-vec/vec-slice.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-// run-pass
-
-
-pub fn main() {
-    let  v = vec![1,2,3,4,5];
-    let v2 = &v[1..3];
-    assert_eq!(v2[0], 2);
-    assert_eq!(v2[1], 3);
-}