summaryrefslogtreecommitdiffstats
path: root/tests/ui/range/range-pattern-out-of-bounds-issue-68972.stderr
blob: 7b8309b9bc2a1eafdf5339165d0e8bc0e38a6a07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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