rust/tests/ui/error-codes/E0030.stderr
Deadbeef f8ca417559 reword error for invalid range patterns
For half-open ranges, specifies that the upper bound cannot be the minimum.

Also specify that this only applies to range patterns and not also expressions.
2025-12-02 18:28:05 +00:00

9 lines
315 B
Text

error[E0030]: lower bound for range pattern must be less than or equal to upper bound
--> $DIR/E0030.rs:3:9
|
LL | 1000 ..= 5 => {}
| ^^^^^^^^^^ lower bound larger than upper bound
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0030`.