rust/tests/ui/parser/range_inclusive_dotdotdot.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.2 KiB
Plaintext
Raw Normal View History

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
| ^^^
|
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;
| ~~
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;
| ~~~
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
| ^^^
|
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;
| ~~
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;
| ~~~
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
| ^^^
|
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;
| ~~
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;
| ~~~
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
| ^^^
|
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 {}
| ~~
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 {}
| ~~~
2018-10-20 20:36:17 +00:00
error: aborting due to 4 previous errors