rust/src/test/ui/parser/range_inclusive_dotdotdot.stderr

59 lines
1.2 KiB
Plaintext
Raw Normal View History

2018-10-20 15:36:17 -05:00
error: unexpected token: `...`
2018-12-25 09:56:47 -06:00
--> $DIR/range_inclusive_dotdotdot.rs:8:12
2018-10-20 15:36:17 -05:00
|
2019-03-09 06:03:44 -06:00
LL | return ...1;
2018-10-20 15:36:17 -05:00
| ^^^
help: use `..` for an exclusive range
|
2019-03-09 06:03:44 -06:00
LL | return ..1;
2018-10-20 15:36:17 -05:00
| ^^
help: or `..=` for an inclusive range
|
2019-03-09 06:03:44 -06:00
LL | return ..=1;
2018-10-20 15:36:17 -05:00
| ^^^
error: unexpected token: `...`
2018-12-25 09:56:47 -06:00
--> $DIR/range_inclusive_dotdotdot.rs:14:13
2018-10-20 15:36:17 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let x = ...0;
2018-10-20 15:36:17 -05:00
| ^^^
help: use `..` for an exclusive range
|
2019-03-09 06:03:44 -06:00
LL | let x = ..0;
2018-10-20 15:36:17 -05:00
| ^^
help: or `..=` for an inclusive range
|
2019-03-09 06:03:44 -06:00
LL | let x = ..=0;
2018-10-20 15:36:17 -05:00
| ^^^
error: unexpected token: `...`
2018-12-25 09:56:47 -06:00
--> $DIR/range_inclusive_dotdotdot.rs:18:14
2018-10-20 15:36:17 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let x = 5...5;
2018-10-20 15:36:17 -05:00
| ^^^
help: use `..` for an exclusive range
|
2019-03-09 06:03:44 -06:00
LL | let x = 5..5;
2018-10-20 15:36:17 -05:00
| ^^
help: or `..=` for an inclusive range
|
2019-03-09 06:03:44 -06:00
LL | let x = 5..=5;
2018-10-20 15:36:17 -05:00
| ^^^
error: unexpected token: `...`
2018-12-25 09:56:47 -06:00
--> $DIR/range_inclusive_dotdotdot.rs:22:15
2018-10-20 15:36:17 -05:00
|
2019-03-09 06:03:44 -06:00
LL | for _ in 0...1 {}
2018-10-20 15:36:17 -05:00
| ^^^
help: use `..` for an exclusive range
|
2019-03-09 06:03:44 -06:00
LL | for _ in 0..1 {}
2018-10-20 15:36:17 -05:00
| ^^
help: or `..=` for an inclusive range
|
2019-03-09 06:03:44 -06:00
LL | for _ in 0..=1 {}
2018-10-20 15:36:17 -05:00
| ^^^
error: aborting due to 4 previous errors