summaryrefslogtreecommitdiffstats
path: root/src/test/ui/array-slice-vec/slice-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/array-slice-vec/slice-2.rs')
-rw-r--r--src/test/ui/array-slice-vec/slice-2.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/ui/array-slice-vec/slice-2.rs b/src/test/ui/array-slice-vec/slice-2.rs
deleted file mode 100644
index 5423e295a..000000000
--- a/src/test/ui/array-slice-vec/slice-2.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-// Test that slicing syntax gives errors if we have not implemented the trait.
-
-struct Foo;
-
-fn main() {
- let x = Foo;
- &x[..]; //~ ERROR cannot index into a value of type `Foo`
- &x[Foo..]; //~ ERROR cannot index into a value of type `Foo`
- &x[..Foo]; //~ ERROR cannot index into a value of type `Foo`
- &x[Foo..Foo]; //~ ERROR cannot index into a value of type `Foo`
-}