]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0030.stderr
Rollup merge of #97915 - tbu-:pr_os_string_fmt_write, r=joshtriplett
[rust.git] / src / test / ui / error-codes / E0030.stderr
1 error[E0030]: lower range bound must be less than or equal to upper
2   --> $DIR/E0030.rs:3:9
3    |
4 LL |         1000 ..= 5 => {}
5    |         ^^^^ lower bound larger than upper bound
6
7 error[E0030]: lower range bound must be less than or equal to upper
8   --> $DIR/E0030.rs:3:9
9    |
10 LL |         1000 ..= 5 => {}
11    |         ^^^^ lower bound larger than upper bound
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0030`.