2020-01-11 05:49:43 +00:00
|
|
|
error: range-to patterns with `...` are not allowed
|
2022-09-24 15:22:04 +00:00
|
|
|
--> $DIR/half-open-range-pats-inclusive-dotdotdot-bad-syntax.rs:15:9
|
2020-01-11 05:49:43 +00:00
|
|
|
|
|
|
|
|
LL | ...X => {}
|
2024-07-06 03:07:46 +00:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: use `..=` instead
|
|
|
|
|
|
|
|
|
LL | ..=X => {}
|
|
|
|
| ~~~
|
2020-01-11 05:49:43 +00:00
|
|
|
|
|
|
|
error: range-to patterns with `...` are not allowed
|
2022-09-24 15:22:04 +00:00
|
|
|
--> $DIR/half-open-range-pats-inclusive-dotdotdot-bad-syntax.rs:16:9
|
2020-01-11 05:49:43 +00:00
|
|
|
|
|
|
|
|
LL | ...0 => {}
|
2024-07-06 03:07:46 +00:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: use `..=` instead
|
|
|
|
|
|
|
|
|
LL | ..=0 => {}
|
|
|
|
| ~~~
|
2020-01-11 05:49:43 +00:00
|
|
|
|
|
|
|
error: range-to patterns with `...` are not allowed
|
2022-09-24 15:22:04 +00:00
|
|
|
--> $DIR/half-open-range-pats-inclusive-dotdotdot-bad-syntax.rs:17:9
|
2020-01-11 05:49:43 +00:00
|
|
|
|
|
|
|
|
LL | ...'a' => {}
|
2024-07-06 03:07:46 +00:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: use `..=` instead
|
|
|
|
|
|
|
|
|
LL | ..='a' => {}
|
|
|
|
| ~~~
|
2020-01-11 05:49:43 +00:00
|
|
|
|
|
|
|
error: range-to patterns with `...` are not allowed
|
2022-09-24 15:22:04 +00:00
|
|
|
--> $DIR/half-open-range-pats-inclusive-dotdotdot-bad-syntax.rs:18:9
|
2020-01-11 05:49:43 +00:00
|
|
|
|
|
|
|
|
LL | ...0.0f32 => {}
|
2024-07-06 03:07:46 +00:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: use `..=` instead
|
|
|
|
|
|
|
|
|
LL | ..=0.0f32 => {}
|
|
|
|
| ~~~
|
2020-01-11 05:49:43 +00:00
|
|
|
|
|
|
|
error: range-to patterns with `...` are not allowed
|
2022-09-24 15:22:04 +00:00
|
|
|
--> $DIR/half-open-range-pats-inclusive-dotdotdot-bad-syntax.rs:25:17
|
2020-01-11 05:49:43 +00:00
|
|
|
|
|
|
|
|
LL | let ...$e;
|
2024-07-06 03:07:46 +00:00
|
|
|
| ^^^
|
2020-01-11 05:49:43 +00:00
|
|
|
...
|
|
|
|
LL | mac!(0);
|
2021-10-14 18:28:28 +00:00
|
|
|
| ------- in this macro invocation
|
2019-12-16 13:56:47 +00:00
|
|
|
|
|
2021-02-13 19:52:25 +00:00
|
|
|
= note: this error originates in the macro `mac` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2024-07-06 03:07:46 +00:00
|
|
|
help: use `..=` instead
|
|
|
|
|
|
|
|
|
LL | let ..=$e;
|
|
|
|
| ~~~
|
2020-01-11 05:49:43 +00:00
|
|
|
|
2024-02-01 22:45:00 +00:00
|
|
|
error[E0005]: refutable pattern in local binding
|
|
|
|
--> $DIR/half-open-range-pats-inclusive-dotdotdot-bad-syntax.rs:25:17
|
|
|
|
|
|
|
|
|
LL | let ...$e;
|
|
|
|
| ^^^^^ pattern `1_i32..=i32::MAX` not covered
|
|
|
|
...
|
|
|
|
LL | mac!(0);
|
|
|
|
| ------- in this macro invocation
|
|
|
|
|
|
|
|
|
= note: `let` bindings require an "irrefutable pattern", like a `struct` or an `enum` with only one variant
|
|
|
|
= note: for more information, visit https://doc.rust-lang.org/book/ch18-02-refutability.html
|
|
|
|
= note: the matched value is of type `i32`
|
|
|
|
= note: this error originates in the macro `mac` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
2020-01-11 05:49:43 +00:00
|
|
|
|
2024-02-01 22:45:00 +00:00
|
|
|
For more information about this error, try `rustc --explain E0005`.
|