2019-12-11 03:04:34 -06:00
|
|
|
error[E0579]: lower range bound must be less than upper
|
2022-09-24 10:22:04 -05:00
|
|
|
--> $DIR/half-open-range-pats-thir-lower-empty.rs:11:11
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
2020-10-24 18:21:40 -05:00
|
|
|
LL | m!(0, ..u8::MIN);
|
|
|
|
| ^^^^^^^^^
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
|
|
error[E0579]: lower range bound must be less than upper
|
2023-02-27 11:43:39 -06:00
|
|
|
--> $DIR/half-open-range-pats-thir-lower-empty.rs:13:11
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
2020-10-24 18:21:40 -05:00
|
|
|
LL | m!(0, ..u16::MIN);
|
|
|
|
| ^^^^^^^^^^
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
|
|
error[E0579]: lower range bound must be less than upper
|
2023-02-27 11:43:39 -06:00
|
|
|
--> $DIR/half-open-range-pats-thir-lower-empty.rs:15:11
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
2020-10-24 18:21:40 -05:00
|
|
|
LL | m!(0, ..u32::MIN);
|
|
|
|
| ^^^^^^^^^^
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
|
|
error[E0579]: lower range bound must be less than upper
|
2022-09-24 10:22:04 -05:00
|
|
|
--> $DIR/half-open-range-pats-thir-lower-empty.rs:17:11
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
2020-10-24 18:21:40 -05:00
|
|
|
LL | m!(0, ..u64::MIN);
|
|
|
|
| ^^^^^^^^^^
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
|
|
error[E0579]: lower range bound must be less than upper
|
2023-02-27 11:43:39 -06:00
|
|
|
--> $DIR/half-open-range-pats-thir-lower-empty.rs:19:11
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
2020-10-24 18:21:40 -05:00
|
|
|
LL | m!(0, ..u128::MIN);
|
|
|
|
| ^^^^^^^^^^^
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
|
|
error[E0579]: lower range bound must be less than upper
|
2023-02-27 11:43:39 -06:00
|
|
|
--> $DIR/half-open-range-pats-thir-lower-empty.rs:22:11
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
2020-10-24 18:21:40 -05:00
|
|
|
LL | m!(0, ..i8::MIN);
|
|
|
|
| ^^^^^^^^^
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
|
|
error[E0579]: lower range bound must be less than upper
|
2023-02-27 11:43:39 -06:00
|
|
|
--> $DIR/half-open-range-pats-thir-lower-empty.rs:24:11
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
2020-10-24 18:21:40 -05:00
|
|
|
LL | m!(0, ..i16::MIN);
|
|
|
|
| ^^^^^^^^^^
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
|
|
error[E0579]: lower range bound must be less than upper
|
2023-02-27 11:43:39 -06:00
|
|
|
--> $DIR/half-open-range-pats-thir-lower-empty.rs:26:11
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
2020-10-24 18:21:40 -05:00
|
|
|
LL | m!(0, ..i32::MIN);
|
|
|
|
| ^^^^^^^^^^
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
|
|
error[E0579]: lower range bound must be less than upper
|
2023-02-27 11:43:39 -06:00
|
|
|
--> $DIR/half-open-range-pats-thir-lower-empty.rs:28:11
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
2020-10-24 18:21:40 -05:00
|
|
|
LL | m!(0, ..i64::MIN);
|
|
|
|
| ^^^^^^^^^^
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
|
|
error[E0579]: lower range bound must be less than upper
|
2023-02-27 11:43:39 -06:00
|
|
|
--> $DIR/half-open-range-pats-thir-lower-empty.rs:30:11
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
2020-10-24 18:21:40 -05:00
|
|
|
LL | m!(0, ..i128::MIN);
|
|
|
|
| ^^^^^^^^^^^
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
|
|
error[E0579]: lower range bound must be less than upper
|
2023-02-27 11:43:39 -06:00
|
|
|
--> $DIR/half-open-range-pats-thir-lower-empty.rs:33:14
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
2020-10-24 18:21:40 -05:00
|
|
|
LL | m!(0f32, ..f32::NEG_INFINITY);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
|
|
error[E0579]: lower range bound must be less than upper
|
2023-02-27 11:43:39 -06:00
|
|
|
--> $DIR/half-open-range-pats-thir-lower-empty.rs:35:14
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
2020-10-24 18:21:40 -05:00
|
|
|
LL | m!(0f64, ..f64::NEG_INFINITY);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
|
|
error[E0579]: lower range bound must be less than upper
|
2023-02-27 11:43:39 -06:00
|
|
|
--> $DIR/half-open-range-pats-thir-lower-empty.rs:38:13
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
|
|
|
LL | m!('a', ..'\u{0}');
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
2023-02-27 11:43:39 -06:00
|
|
|
error: aborting due to 13 previous errors
|
2019-12-11 03:04:34 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0579`.
|