mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
133 lines
3.5 KiB
Plaintext
133 lines
3.5 KiB
Plaintext
error: range pattern bounds cannot have parentheses
|
|
--> $DIR/pat-recover-ranges.rs:4:13
|
|
|
|
|
LL | 0..=(1) => (),
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - 0..=(1) => (),
|
|
LL + 0..=1 => (),
|
|
|
|
|
|
|
error: range pattern bounds cannot have parentheses
|
|
--> $DIR/pat-recover-ranges.rs:6:9
|
|
|
|
|
LL | (-12)..=4 => (),
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - (-12)..=4 => (),
|
|
LL + -12..=4 => (),
|
|
|
|
|
|
|
error: range pattern bounds cannot have parentheses
|
|
--> $DIR/pat-recover-ranges.rs:8:9
|
|
|
|
|
LL | (0)..=(-4) => (),
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - (0)..=(-4) => (),
|
|
LL + 0..=(-4) => (),
|
|
|
|
|
|
|
error: range pattern bounds cannot have parentheses
|
|
--> $DIR/pat-recover-ranges.rs:8:15
|
|
|
|
|
LL | (0)..=(-4) => (),
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - (0)..=(-4) => (),
|
|
LL + (0)..=-4 => (),
|
|
|
|
|
|
|
error: expected a pattern range bound, found an expression
|
|
--> $DIR/pat-recover-ranges.rs:11:12
|
|
|
|
|
LL | ..=1 + 2 => (),
|
|
| ^^^^^ arbitrary expressions are not allowed in patterns
|
|
|
|
error: range pattern bounds cannot have parentheses
|
|
--> $DIR/pat-recover-ranges.rs:13:9
|
|
|
|
|
LL | (4).. => (),
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - (4).. => (),
|
|
LL + 4.. => (),
|
|
|
|
|
|
|
error: expected a pattern range bound, found an expression
|
|
--> $DIR/pat-recover-ranges.rs:15:10
|
|
|
|
|
LL | (-4 + 0).. => (),
|
|
| ^^^^^^ arbitrary expressions are not allowed in patterns
|
|
|
|
error: range pattern bounds cannot have parentheses
|
|
--> $DIR/pat-recover-ranges.rs:15:9
|
|
|
|
|
LL | (-4 + 0).. => (),
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - (-4 + 0).. => (),
|
|
LL + -4 + 0.. => (),
|
|
|
|
|
|
|
error: expected a pattern range bound, found an expression
|
|
--> $DIR/pat-recover-ranges.rs:18:10
|
|
|
|
|
LL | (1 + 4)...1 * 2 => (),
|
|
| ^^^^^ arbitrary expressions are not allowed in patterns
|
|
|
|
error: range pattern bounds cannot have parentheses
|
|
--> $DIR/pat-recover-ranges.rs:18:9
|
|
|
|
|
LL | (1 + 4)...1 * 2 => (),
|
|
| ^ ^
|
|
|
|
|
help: remove these parentheses
|
|
|
|
|
LL - (1 + 4)...1 * 2 => (),
|
|
LL + 1 + 4...1 * 2 => (),
|
|
|
|
|
|
|
error: expected a pattern range bound, found an expression
|
|
--> $DIR/pat-recover-ranges.rs:18:19
|
|
|
|
|
LL | (1 + 4)...1 * 2 => (),
|
|
| ^^^^^ arbitrary expressions are not allowed in patterns
|
|
|
|
error: expected a pattern range bound, found a method call
|
|
--> $DIR/pat-recover-ranges.rs:24:9
|
|
|
|
|
LL | 0.x()..="y".z() => (),
|
|
| ^^^^^ method calls are not allowed in patterns
|
|
|
|
error: expected a pattern range bound, found a method call
|
|
--> $DIR/pat-recover-ranges.rs:24:17
|
|
|
|
|
LL | 0.x()..="y".z() => (),
|
|
| ^^^^^^^ method calls are not allowed in patterns
|
|
|
|
warning: `...` range patterns are deprecated
|
|
--> $DIR/pat-recover-ranges.rs:18:16
|
|
|
|
|
LL | (1 + 4)...1 * 2 => (),
|
|
| ^^^ help: use `..=` for an inclusive range
|
|
|
|
|
= warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
|
|
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html>
|
|
= note: `#[warn(ellipsis_inclusive_range_patterns)]` on by default
|
|
|
|
error: aborting due to 13 previous errors; 1 warning emitted
|
|
|