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: `...`
2019-05-31 15:50:04 -05:00
--> $DIR/range_inclusive_dotdotdot.rs:6: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: `...`
2019-05-31 15:50:04 -05:00
--> $DIR/range_inclusive_dotdotdot.rs:12: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: `...`
2019-05-31 15:50:04 -05:00
--> $DIR/range_inclusive_dotdotdot.rs:16: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: `...`
2019-05-31 15:50:04 -05:00
--> $DIR/range_inclusive_dotdotdot.rs:20: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