You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/test/ui/lint/type-overflow.stderr
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -10,55 +10,55 @@ note: the lint level is defined here
10
10
LL | #![warn(overflowing_literals)]
11
11
| ^^^^^^^^^^^^^^^^^^^^
12
12
= note: the literal `255i8` does not fit into the type `i8` whose range is `-128..=127`
13
-
= help: consider using `u8` instead
13
+
= help: consider using the type `u8` instead
14
14
15
-
warning: literal out of range for i8
15
+
warning: literal out of range for `i8`
16
16
--> $DIR/type-overflow.rs:10:16
17
17
|
18
18
LL | let fail = 0b1000_0001i8;
19
-
| ^^^^^^^^^^^^^ help: consider using `u8` instead: `0b1000_0001u8`
19
+
| ^^^^^^^^^^^^^ help: consider using the type `u8` instead: `0b1000_0001u8`
20
20
|
21
21
= note: the literal `0b1000_0001i8` (decimal `129`) does not fit into the type `i8` and will become `-127i8`
22
22
23
-
warning: literal out of range for i64
23
+
warning: literal out of range for `i64`
24
24
--> $DIR/type-overflow.rs:12:16
25
25
|
26
26
LL | let fail = 0x8000_0000_0000_0000i64;
27
-
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `u64` instead: `0x8000_0000_0000_0000u64`
27
+
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using the type `u64` instead: `0x8000_0000_0000_0000u64`
28
28
|
29
29
= note: the literal `0x8000_0000_0000_0000i64` (decimal `9223372036854775808`) does not fit into the type `i64` and will become `-9223372036854775808i64`
30
30
31
-
warning: literal out of range for u32
31
+
warning: literal out of range for `u32`
32
32
--> $DIR/type-overflow.rs:14:16
33
33
|
34
34
LL | let fail = 0x1_FFFF_FFFFu32;
35
-
| ^^^^^^^^^^^^^^^^ help: consider using `u64` instead: `0x1_FFFF_FFFFu64`
35
+
| ^^^^^^^^^^^^^^^^ help: consider using the type `u64` instead: `0x1_FFFF_FFFFu64`
36
36
|
37
37
= note: the literal `0x1_FFFF_FFFFu32` (decimal `8589934591`) does not fit into the type `u32` and will become `4294967295u32`
38
38
39
-
warning: literal out of range for i128
39
+
warning: literal out of range for `i128`
40
40
--> $DIR/type-overflow.rs:16:22
41
41
|
42
42
LL | let fail: i128 = 0x8000_0000_0000_0000_0000_0000_0000_0000;
43
43
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44
44
|
45
45
= note: the literal `0x8000_0000_0000_0000_0000_0000_0000_0000` (decimal `170141183460469231731687303715884105728`) does not fit into the type `i128` and will become `-170141183460469231731687303715884105728i128`
46
-
= help: consider using `u128` instead
46
+
= help: consider using the type `u128` instead
47
47
48
-
warning: literal out of range for i32
48
+
warning: literal out of range for `i32`
49
49
--> $DIR/type-overflow.rs:19:16
50
50
|
51
51
LL | let fail = 0x8FFF_FFFF_FFFF_FFFE;
52
52
| ^^^^^^^^^^^^^^^^^^^^^
53
53
|
54
54
= note: the literal `0x8FFF_FFFF_FFFF_FFFE` (decimal `10376293541461622782`) does not fit into the type `i32` and will become `-2i32`
55
-
= help: consider using `i128` instead
55
+
= help: consider using the type `i128` instead
56
56
57
-
warning: literal out of range for i8
57
+
warning: literal out of range for `i8`
58
58
--> $DIR/type-overflow.rs:21:17
59
59
|
60
60
LL | let fail = -0b1111_1111i8;
61
-
| ^^^^^^^^^^^^^ help: consider using `i16` instead: `0b1111_1111i16`
61
+
| ^^^^^^^^^^^^^ help: consider using the type `i16` instead: `0b1111_1111i16`
62
62
|
63
63
= note: the literal `0b1111_1111i8` (decimal `255`) does not fit into the type `i8` and will become `-1i8`
0 commit comments