Skip to content

Commit 2311c5e

Browse files
committed
---
yaml --- r: 196087 b: refs/heads/beta c: 07ff8ab h: refs/heads/master i: 196085: 8874550 196083: 54dc8ef 196079: 2401ddb v: v3
1 parent dc2ec06 commit 2311c5e

File tree

5 files changed

+7
-1
lines changed

5 files changed

+7
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
2929
refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
3030
refs/heads/batch: b7fd822592a4fb577552d93010c4a4e14f314346
3131
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
32-
refs/heads/beta: c8bf5f5d9742ea94a8a024ff1d9776090718c61d
32+
refs/heads/beta: 07ff8ab8855b4d5ce0d547cfe3b1bf03e5f427eb
3333
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
3434
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
3535
refs/heads/tmp: 9de34a84bb300bab1bf0227f577331620cd60511

branches/beta/src/test/compile-fail/const-eval-overflow.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(negate_unsigned)]
12+
1113
#![allow(unused_imports)]
1214

1315
// Note: the relevant lint pass here runs before some of the constant

branches/beta/src/test/compile-fail/enum-discrim-too-small.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(negate_unsigned)]
12+
1113
#[repr(u8)] //~ NOTE discriminant type specified here
1214
enum Eu8 {
1315
Au8 = 23,

branches/beta/src/test/compile-fail/lint-exceeding-bitshifts.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(negate_unsigned)]
1112
#![deny(exceeding_bitshifts)]
1213
#![allow(unused_variables)]
1314
#![allow(dead_code)]

branches/beta/src/test/compile-fail/lint-type-limits.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(negate_unsigned)]
1112
#![allow(dead_code)]
1213

1314
// compile-flags: -D unused-comparisons

0 commit comments

Comments
 (0)