rust/tests/ui/match/match-range-fail-2.stderr

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

23 lines
725 B
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0030]: lower range bound must be less than or equal to upper
2018-12-25 15:56:47 +00:00
--> $DIR/match-range-fail-2.rs:5:9
2018-08-08 12:28:26 +00:00
|
LL | 6 ..= 1 => { }
| ^ lower bound larger than upper bound
error[E0579]: lower range bound must be less than upper
2023-02-27 17:43:39 +00:00
--> $DIR/match-range-fail-2.rs:11:9
2018-08-08 12:28:26 +00:00
|
LL | 0 .. 0 => { }
| ^
error[E0030]: lower range bound must be less than or equal to upper
2023-02-27 17:43:39 +00:00
--> $DIR/match-range-fail-2.rs:17:9
2018-08-08 12:28:26 +00:00
|
LL | 0xFFFF_FFFF_FFFF_FFFF ..= 1 => { }
| ^^^^^^^^^^^^^^^^^^^^^ lower bound larger than upper bound
2023-02-27 17:43:39 +00:00
error: aborting due to 3 previous errors
2018-08-08 12:28:26 +00:00
Some errors have detailed explanations: E0030, E0579.
2018-08-08 12:28:26 +00:00
For more information about an error, try `rustc --explain E0030`.