rust/tests/ui/range/range-pattern-out-of-bounds-issue-68972.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
484 B
Plaintext
Raw Normal View History

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