2023-05-03 08:32:52 -05:00
|
|
|
error: expected one of `.`, `?`, `]`, or an operator, found `:`
|
|
|
|
--> $DIR/range-index-instead-of-colon.rs:4:17
|
|
|
|
|
|
|
|
|
LL | &[1, 2, 3][1:2];
|
|
|
|
| ^ expected one of `.`, `?`, `]`, or an operator
|
|
|
|
|
|
2023-11-27 07:18:03 -06:00
|
|
|
help: you might have meant a range expression
|
2023-05-03 08:32:52 -05:00
|
|
|
|
|
|
|
|
LL | &[1, 2, 3][1..2];
|
|
|
|
| ~~
|
|
|
|
|
2023-05-16 00:53:05 -05:00
|
|
|
error: aborting due to 1 previous error
|
2023-05-03 08:32:52 -05:00
|
|
|
|