@@ -43,7 +43,7 @@ error: literal out of range for `i8`
4343LL | let x3: i8 = -(129);
4444 | ^^^^^^
4545 |
46- = note: the literal `-( 129) ` does not fit into the type `i8` whose range is `-128..=127`
46+ = note: the literal `-129` does not fit into the type `i8` whose range is `-128..=127`
4747 = help: consider using the type `i16` instead
4848
4949error: literal out of range for `i8`
@@ -70,7 +70,7 @@ error: literal out of range for `i8`
7070LL | let x = 128_i8;
7171 | ^^^^^^
7272 |
73- = note: the literal `128_i8 ` does not fit into the type `i8` whose range is `-128..=127`
73+ = note: the literal `128 ` does not fit into the type `i8` whose range is `-128..=127`
7474 = help: consider using the type `u8` instead
7575
7676error: literal out of range for `i8`
@@ -79,7 +79,7 @@ error: literal out of range for `i8`
7979LL | let x = -129_i8;
8080 | ^^^^^^^
8181 |
82- = note: the literal `-129_i8 ` does not fit into the type `i8` whose range is `-128..=127`
82+ = note: the literal `-129 ` does not fit into the type `i8` whose range is `-128..=127`
8383 = help: consider using the type `i16` instead
8484
8585error: literal out of range for `i32`
@@ -97,7 +97,7 @@ error: literal out of range for `i32`
9797LL | let x = 2147483648_i32;
9898 | ^^^^^^^^^^^^^^
9999 |
100- = note: the literal `2147483648_i32 ` does not fit into the type `i32` whose range is `-2147483648..=2147483647`
100+ = note: the literal `2147483648 ` does not fit into the type `i32` whose range is `-2147483648..=2147483647`
101101 = help: consider using the type `u32` instead
102102
103103error: literal out of range for `i32`
@@ -115,7 +115,7 @@ error: literal out of range for `i32`
115115LL | let x = -2147483649_i32;
116116 | ^^^^^^^^^^^^^^^
117117 |
118- = note: the literal `-2147483649_i32 ` does not fit into the type `i32` whose range is `-2147483648..=2147483647`
118+ = note: the literal `-2147483649 ` does not fit into the type `i32` whose range is `-2147483648..=2147483647`
119119 = help: consider using the type `i64` instead
120120
121121error: literal out of range for `i32`
@@ -133,7 +133,7 @@ error: literal out of range for `i64`
133133LL | let x = 9223372036854775808_i64;
134134 | ^^^^^^^^^^^^^^^^^^^^^^^
135135 |
136- = note: the literal `9223372036854775808_i64 ` does not fit into the type `i64` whose range is `-9223372036854775808..=9223372036854775807`
136+ = note: the literal `9223372036854775808 ` does not fit into the type `i64` whose range is `-9223372036854775808..=9223372036854775807`
137137 = help: consider using the type `u64` instead
138138
139139error: literal out of range for `i64`
@@ -142,7 +142,7 @@ error: literal out of range for `i64`
142142LL | let x = 18446744073709551615_i64;
143143 | ^^^^^^^^^^^^^^^^^^^^^^^^
144144 |
145- = note: the literal `18446744073709551615_i64 ` does not fit into the type `i64` whose range is `-9223372036854775808..=9223372036854775807`
145+ = note: the literal `18446744073709551615 ` does not fit into the type `i64` whose range is `-9223372036854775808..=9223372036854775807`
146146 = help: consider using the type `u64` instead
147147
148148error: literal out of range for `i64`
@@ -160,7 +160,7 @@ error: literal out of range for `i64`
160160LL | let x = -9223372036854775809_i64;
161161 | ^^^^^^^^^^^^^^^^^^^^^^^^
162162 |
163- = note: the literal `-9223372036854775809_i64 ` does not fit into the type `i64` whose range is `-9223372036854775808..=9223372036854775807`
163+ = note: the literal `-9223372036854775809 ` does not fit into the type `i64` whose range is `-9223372036854775808..=9223372036854775807`
164164 = help: consider using the type `i128` instead
165165
166166error: aborting due to 18 previous errors
0 commit comments