2023-01-09 01:10:17 -06:00
|
|
|
error: literal out of range for `u8`
|
|
|
|
--> $DIR/range-pattern-out-of-bounds-issue-68972.rs:5:14
|
|
|
|
|
|
|
|
|
LL | 251..257 => {}
|
2023-10-10 21:54:21 -05:00
|
|
|
| ^^^ this value does not fit into the type `u8` whose range is `0..=255`
|
2023-01-09 01:10:17 -06:00
|
|
|
|
|
|
|
error: literal out of range for `u8`
|
2023-02-27 11:43:39 -06:00
|
|
|
--> $DIR/range-pattern-out-of-bounds-issue-68972.rs:7:15
|
2023-01-09 01:10:17 -06:00
|
|
|
|
|
|
|
|
LL | 251..=256 => {}
|
2023-10-10 21:54:21 -05:00
|
|
|
| ^^^ this value does not fit into the type `u8` whose range is `0..=255`
|
2023-01-09 01:10:17 -06:00
|
|
|
|
2023-02-27 11:43:39 -06:00
|
|
|
error: aborting due to 2 previous errors
|
2023-01-09 01:10:17 -06:00
|
|
|
|