Skip to content

Commit 6ad0c41

Browse files
committed
fix merge conflict
Signed-off-by: 11happy <soni5happy@gmail.com>
1 parent 38e3a5e commit 6ad0c41

File tree

2 files changed

+22
-5
lines changed

2 files changed

+22
-5
lines changed

tests/ui/lint/type-overflow.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,12 @@ fn main() {
4141

4242
let fail = 0x8FFF_FFFF_FFFF_FFFE; //~WARNING literal out of range for `i32`
4343
//~| HELP consider using the type `u64` instead
44-
//~| HELP
44+
//~| HELP consider using the type `u64` for the literal and cast it to `i32`
4545

4646
let fail = -0b1111_1111i8; //~WARNING literal out of range for `i8`
4747
//~| HELP consider using the type `i16` instead
48+
49+
let fail = 0x8000_0000_0000_0000_0000_0000_FFFF_FFFE; //~WARNING literal out of range for `i32`
50+
//~| HELP consider using the type `u128` instead
51+
//~| HELP consider using the type `u128` for the literal and cast it to `i32`
4852
}

tests/ui/lint/type-overflow.stderr

+17-4
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,10 @@ LL | let fail = 0x8FFF_FFFF_FFFF_FFFE;
114114
|
115115
= note: the literal `0x8FFF_FFFF_FFFF_FFFE` (decimal `10376293541461622782`) does not fit into the type `i32` and will become `-2i32`
116116
= 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`
118118
|
119-
LL | let fail = 0x8FFF_FFFF_FFFF_FFFEu32 as i32;
120-
| ++++++++++
119+
LL | let fail = 0x8FFF_FFFF_FFFF_FFFEu64 as i32;
120+
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
121121

122122
warning: literal out of range for `i8`
123123
--> $DIR/type-overflow.rs:46:17
@@ -128,5 +128,18 @@ LL | let fail = -0b1111_1111i8;
128128
= note: the literal `0b1111_1111i8` (decimal `255`) does not fit into the type `i8`
129129
= note: and the value `-0b1111_1111i8` will become `1i8`
130130

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;
142+
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
143+
144+
warning: 12 warnings emitted
132145

0 commit comments

Comments
 (0)