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: tests/ui/lint/type-overflow.stderr
+17-4
Original file line number
Diff line number
Diff line change
@@ -114,10 +114,10 @@ LL | let fail = 0x8FFF_FFFF_FFFF_FFFE;
114
114
|
115
115
= note: the literal `0x8FFF_FFFF_FFFF_FFFE` (decimal `10376293541461622782`) does not fit into the type `i32` and will become `-2i32`
116
116
= help: consider using the type `u64` instead
117
-
help: to use as a negative number (decimal `-2`), consider using the type `u32` for the literal and cast it to `i32`
117
+
help: to use as a negative number (decimal `-2`), consider using the type `u64` for the literal and cast it to `i32`
118
118
|
119
-
LL | let fail = 0x8FFF_FFFF_FFFF_FFFEu32 as i32;
120
-
| ++++++++++
119
+
LL | let fail = 0x8FFF_FFFF_FFFF_FFFEu64 as i32;
120
+
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
121
121
122
122
warning: literal out of range for `i8`
123
123
--> $DIR/type-overflow.rs:46:17
@@ -128,5 +128,18 @@ LL | let fail = -0b1111_1111i8;
128
128
= note: the literal `0b1111_1111i8` (decimal `255`) does not fit into the type `i8`
129
129
= note: and the value `-0b1111_1111i8` will become `1i8`
130
130
131
-
warning: 11 warnings emitted
131
+
warning: literal out of range for `i32`
132
+
--> $DIR/type-overflow.rs:49:16
133
+
|
134
+
LL | let fail = 0x8000_0000_0000_0000_0000_0000_FFFF_FFFE;
135
+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
136
+
|
137
+
= note: the literal `0x8000_0000_0000_0000_0000_0000_FFFF_FFFE` (decimal `170141183460469231731687303720179073022`) does not fit into the type `i32` and will become `-2i32`
138
+
= help: consider using the type `u128` instead
139
+
help: to use as a negative number (decimal `-2`), consider using the type `u128` for the literal and cast it to `i32`
140
+
|
141
+
LL | let fail = 0x8000_0000_0000_0000_0000_0000_FFFF_FFFEu128 as i32;
0 commit comments