a417518173
Now that `..=` inclusive ranges are stabilized, people probably shouldn't be using `...` even in patterns, even if it's still legal there (see #51043). To avoid drawing attention to `...` being a real thing, let's reword this message to just say "unexpected token" rather "cannot be used in expressions".
17 lines
396 B
Plaintext
17 lines
396 B
Plaintext
error: unexpected token: `...`
|
|
--> $DIR/dotdotdot-expr.rs:12:24
|
|
|
|
|
LL | let _redemptive = 1...21;
|
|
| ^^^
|
|
help: use `..` for an exclusive range
|
|
|
|
|
LL | let _redemptive = 1..21;
|
|
| ^^
|
|
help: or `..=` for an inclusive range
|
|
|
|
|
LL | let _redemptive = 1..=21;
|
|
| ^^^
|
|
|
|
error: aborting due to previous error
|
|
|