summaryrefslogtreecommitdiffstats
path: root/tests/ui/array-slice-vec/slice-2.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/array-slice-vec/slice-2.stderr')
-rw-r--r--tests/ui/array-slice-vec/slice-2.stderr16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/ui/array-slice-vec/slice-2.stderr b/tests/ui/array-slice-vec/slice-2.stderr
index 561feb90f..b122b4691 100644
--- a/tests/ui/array-slice-vec/slice-2.stderr
+++ b/tests/ui/array-slice-vec/slice-2.stderr
@@ -1,26 +1,26 @@
error[E0608]: cannot index into a value of type `Foo`
- --> $DIR/slice-2.rs:7:6
+ --> $DIR/slice-2.rs:7:7
|
LL | &x[..];
- | ^^^^^
+ | ^^^^
error[E0608]: cannot index into a value of type `Foo`
- --> $DIR/slice-2.rs:8:6
+ --> $DIR/slice-2.rs:8:7
|
LL | &x[Foo..];
- | ^^^^^^^^
+ | ^^^^^^^
error[E0608]: cannot index into a value of type `Foo`
- --> $DIR/slice-2.rs:9:6
+ --> $DIR/slice-2.rs:9:7
|
LL | &x[..Foo];
- | ^^^^^^^^
+ | ^^^^^^^
error[E0608]: cannot index into a value of type `Foo`
- --> $DIR/slice-2.rs:10:6
+ --> $DIR/slice-2.rs:10:7
|
LL | &x[Foo..Foo];
- | ^^^^^^^^^^^
+ | ^^^^^^^^^^
error: aborting due to 4 previous errors