]> git.lizzy.rs Git - rust.git/blob - tests/ui/array-slice-vec/slice-2.stderr
Rollup merge of #106797 - FawazTirmizi:dev/issues/104284, r=bjorn3
[rust.git] / tests / ui / array-slice-vec / slice-2.stderr
1 error[E0608]: cannot index into a value of type `Foo`
2   --> $DIR/slice-2.rs:7:6
3    |
4 LL |     &x[..];
5    |      ^^^^^
6
7 error[E0608]: cannot index into a value of type `Foo`
8   --> $DIR/slice-2.rs:8:6
9    |
10 LL |     &x[Foo..];
11    |      ^^^^^^^^
12
13 error[E0608]: cannot index into a value of type `Foo`
14   --> $DIR/slice-2.rs:9:6
15    |
16 LL |     &x[..Foo];
17    |      ^^^^^^^^
18
19 error[E0608]: cannot index into a value of type `Foo`
20   --> $DIR/slice-2.rs:10:6
21    |
22 LL |     &x[Foo..Foo];
23    |      ^^^^^^^^^^^
24
25 error: aborting due to 4 previous errors
26
27 For more information about this error, try `rustc --explain E0608`.