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
Auto merge of #27026 - nagisa:overflowing-unsigned, r=pnkfelix
This commit fixes the negate_unsigned feature gate to appropriately
account for inferred variables.
This is technically a [breaking-change], but I’d consider it a bug fix.
cc @brson for your relnotes.
Fixes#24676Fixes#26840Fixes#25206
Copy file name to clipboardexpand all lines: src/libcoretest/fmt/num.rs
-2
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,6 @@
7
7
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
8
// option. This file may not be copied, modified, or distributed
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6
+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7
+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
+
// option. This file may not be copied, modified, or distributed
9
+
// except according to those terms.
10
+
11
+
// Test that negating unsigned integers is gated by `negate_unsigned` feature
12
+
// gate
13
+
14
+
structS;
15
+
impl std::ops::NegforS{
16
+
typeOutput = u32;
17
+
fnneg(self) -> u32{0}
18
+
}
19
+
20
+
const _MAX:usize = -1;
21
+
//~^ WARN unary negation of unsigned integers will be feature gated in the future
22
+
23
+
fnmain(){
24
+
let a = -1;
25
+
//~^ WARN unary negation of unsigned integers will be feature gated in the future
26
+
let _b :u8 = a;// for infering variable a to u8.
27
+
28
+
-a;
29
+
//~^ WARN unary negation of unsigned integers will be feature gated in the future
30
+
31
+
let _d = -1u8;
32
+
//~^ WARN unary negation of unsigned integers will be feature gated in the future
33
+
34
+
for _ in -10..10u8{}
35
+
//~^ WARN unary negation of unsigned integers will be feature gated in the future
0 commit comments