]> git.lizzy.rs Git - rust.git/blob - src/test/ui/enum/enum-discrim-too-small2.stderr
Rollup merge of #102092 - kxxt:patch-1, r=joshtriplett
[rust.git] / src / test / ui / enum / enum-discrim-too-small2.stderr
1 error: literal out of range for `i8`
2   --> $DIR/enum-discrim-too-small2.rs:8:11
3    |
4 LL |     Ci8 = 223,
5    |           ^^^
6    |
7    = note: the literal `223` does not fit into the type `i8` whose range is `-128..=127`
8    = help: consider using the type `u8` instead
9 note: the lint level is defined here
10   --> $DIR/enum-discrim-too-small2.rs:1:9
11    |
12 LL | #![deny(overflowing_literals)]
13    |         ^^^^^^^^^^^^^^^^^^^^
14
15 error: literal out of range for `i16`
16   --> $DIR/enum-discrim-too-small2.rs:15:12
17    |
18 LL |     Ci16 = 55555,
19    |            ^^^^^
20    |
21    = note: the literal `55555` does not fit into the type `i16` whose range is `-32768..=32767`
22    = help: consider using the type `u16` instead
23
24 error: literal out of range for `i32`
25   --> $DIR/enum-discrim-too-small2.rs:22:12
26    |
27 LL |     Ci32 = 3_000_000_000,
28    |            ^^^^^^^^^^^^^
29    |
30    = note: the literal `3_000_000_000` does not fit into the type `i32` whose range is `-2147483648..=2147483647`
31    = help: consider using the type `u32` instead
32
33 error: literal out of range for `i64`
34   --> $DIR/enum-discrim-too-small2.rs:29:12
35    |
36 LL |     Ci64 = 9223372036854775809,
37    |            ^^^^^^^^^^^^^^^^^^^
38    |
39    = note: the literal `9223372036854775809` does not fit into the type `i64` whose range is `-9223372036854775808..=9223372036854775807`
40    = help: consider using the type `u64` instead
41
42 error: aborting due to 4 previous errors
43