2018-10-20 20:36:17 +00:00
|
|
|
error: unexpected token: `...`
|
2019-05-31 20:50:04 +00:00
|
|
|
--> $DIR/range_inclusive_dotdotdot.rs:6:12
|
2018-10-20 20:36:17 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | return ...1;
|
2018-10-20 20:36:17 +00:00
|
|
|
| ^^^
|
2019-10-24 05:20:58 +00:00
|
|
|
|
|
2018-10-20 20:36:17 +00:00
|
|
|
help: use `..` for an exclusive range
|
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | return ..1;
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~
|
2018-10-20 20:36:17 +00:00
|
|
|
help: or `..=` for an inclusive range
|
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | return ..=1;
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~~
|
2018-10-20 20:36:17 +00:00
|
|
|
|
|
|
|
error: unexpected token: `...`
|
2019-05-31 20:50:04 +00:00
|
|
|
--> $DIR/range_inclusive_dotdotdot.rs:12:13
|
2018-10-20 20:36:17 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let x = ...0;
|
2018-10-20 20:36:17 +00:00
|
|
|
| ^^^
|
2019-10-24 05:20:58 +00:00
|
|
|
|
|
2018-10-20 20:36:17 +00:00
|
|
|
help: use `..` for an exclusive range
|
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let x = ..0;
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~
|
2018-10-20 20:36:17 +00:00
|
|
|
help: or `..=` for an inclusive range
|
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let x = ..=0;
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~~
|
2018-10-20 20:36:17 +00:00
|
|
|
|
|
|
|
error: unexpected token: `...`
|
2019-05-31 20:50:04 +00:00
|
|
|
--> $DIR/range_inclusive_dotdotdot.rs:16:14
|
2018-10-20 20:36:17 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let x = 5...5;
|
2018-10-20 20:36:17 +00:00
|
|
|
| ^^^
|
2019-10-24 05:20:58 +00:00
|
|
|
|
|
2018-10-20 20:36:17 +00:00
|
|
|
help: use `..` for an exclusive range
|
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let x = 5..5;
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~
|
2018-10-20 20:36:17 +00:00
|
|
|
help: or `..=` for an inclusive range
|
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let x = 5..=5;
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~~
|
2018-10-20 20:36:17 +00:00
|
|
|
|
|
|
|
error: unexpected token: `...`
|
2019-05-31 20:50:04 +00:00
|
|
|
--> $DIR/range_inclusive_dotdotdot.rs:20:15
|
2018-10-20 20:36:17 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | for _ in 0...1 {}
|
2018-10-20 20:36:17 +00:00
|
|
|
| ^^^
|
2019-10-24 05:20:58 +00:00
|
|
|
|
|
2018-10-20 20:36:17 +00:00
|
|
|
help: use `..` for an exclusive range
|
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | for _ in 0..1 {}
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~
|
2018-10-20 20:36:17 +00:00
|
|
|
help: or `..=` for an inclusive range
|
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | for _ in 0..=1 {}
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~~
|
2018-10-20 20:36:17 +00:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|