]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/type-overflow.stderr
Move parse-fail tests to UI
[rust.git] / src / test / ui / lint / type-overflow.stderr
1 warning: literal out of range for i8
2   --> $DIR/type-overflow.rs:14:17
3    |
4 LL |     let error = 255i8; //~WARNING literal out of range for i8
5    |                 ^^^^^
6    |
7    = note: #[warn(overflowing_literals)] on by default
8
9 warning: literal out of range for i8
10   --> $DIR/type-overflow.rs:19:16
11    |
12 LL |     let fail = 0b1000_0001i8; //~WARNING literal out of range for i8
13    |                ^^^^^^^^^^^^^ help: consider using `u8` instead: `0b1000_0001u8`
14    |
15    = note: the literal `0b1000_0001i8` (decimal `129`) does not fit into an `i8` and will become `-127i8`
16
17 warning: literal out of range for i64
18   --> $DIR/type-overflow.rs:21:16
19    |
20 LL |     let fail = 0x8000_0000_0000_0000i64; //~WARNING literal out of range for i64
21    |                ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `u64` instead: `0x8000_0000_0000_0000u64`
22    |
23    = note: the literal `0x8000_0000_0000_0000i64` (decimal `9223372036854775808`) does not fit into an `i64` and will become `-9223372036854775808i64`
24
25 warning: literal out of range for u32
26   --> $DIR/type-overflow.rs:23:16
27    |
28 LL |     let fail = 0x1_FFFF_FFFFu32; //~WARNING literal out of range for u32
29    |                ^^^^^^^^^^^^^^^^ help: consider using `u64` instead: `0x1_FFFF_FFFFu64`
30    |
31    = note: the literal `0x1_FFFF_FFFFu32` (decimal `8589934591`) does not fit into an `u32` and will become `4294967295u32`
32
33 warning: literal out of range for i128
34   --> $DIR/type-overflow.rs:25:22
35    |
36 LL |     let fail: i128 = 0x8000_0000_0000_0000_0000_0000_0000_0000;
37    |                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
38    |
39    = note: the literal `0x8000_0000_0000_0000_0000_0000_0000_0000` (decimal `170141183460469231731687303715884105728`) does not fit into an `i128` and will become `-170141183460469231731687303715884105728i128`
40    = help: consider using `u128` instead
41
42 warning: literal out of range for i32
43   --> $DIR/type-overflow.rs:28:16
44    |
45 LL |     let fail = 0x8FFF_FFFF_FFFF_FFFE; //~WARNING literal out of range for i32
46    |                ^^^^^^^^^^^^^^^^^^^^^
47    |
48    = note: the literal `0x8FFF_FFFF_FFFF_FFFE` (decimal `10376293541461622782`) does not fit into an `i32` and will become `-2i32`
49    = help: consider using `i128` instead
50
51 warning: literal out of range for i8
52   --> $DIR/type-overflow.rs:30:17
53    |
54 LL |     let fail = -0b1111_1111i8; //~WARNING literal out of range for i8
55    |                 ^^^^^^^^^^^^^ help: consider using `i16` instead: `0b1111_1111i16`
56    |
57    = note: the literal `0b1111_1111i8` (decimal `255`) does not fit into an `i8` and will become `-1i8`
58