mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
52d534ef63
Fix #68972.
27 lines
894 B
Plaintext
27 lines
894 B
Plaintext
error: literal out of range for `u8`
|
|
--> $DIR/range-pattern-out-of-bounds-issue-68972.rs:5:14
|
|
|
|
|
LL | 251..257 => {}
|
|
| ^^^ this value doesn't fit in `u8` whose maximum value is `255`
|
|
|
|
error: literal out of range for `u8`
|
|
--> $DIR/range-pattern-out-of-bounds-issue-68972.rs:8:15
|
|
|
|
|
LL | 251..=256 => {}
|
|
| ^^^ this value doesn't fit in `u8` whose maximum value is `255`
|
|
|
|
error: literal out of range for `u8`
|
|
--> $DIR/range-pattern-out-of-bounds-issue-68972.rs:5:14
|
|
|
|
|
LL | 251..257 => {}
|
|
| ^^^ this value doesn't fit in `u8` whose maximum value is `255`
|
|
|
|
error: literal out of range for `u8`
|
|
--> $DIR/range-pattern-out-of-bounds-issue-68972.rs:8:15
|
|
|
|
|
LL | 251..=256 => {}
|
|
| ^^^ this value doesn't fit in `u8` whose maximum value is `255`
|
|
|
|
error: aborting due to 4 previous errors
|
|
|