mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
18 lines
400 B
Plaintext
18 lines
400 B
Plaintext
error: unexpected token: `...`
|
|
--> $DIR/dotdotdot-expr.rs:2: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
|
|
|