Skip to content

Commit 2b3989a

Browse files
committed
---
yaml --- r: 174434 b: refs/heads/batch c: 1f46ae2 h: refs/heads/master v: v3
1 parent 0fbc080 commit 2b3989a

12 files changed

+12
-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/issue-18208-method-dispatch-2: 9e1eae4fb9b6527315b4441cf8a0f5ca911d1671
3030
refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
3131
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
32-
refs/heads/batch: 3e38926ff40223031c710cc09c9a4a27d00bd813
32+
refs/heads/batch: 1f46ae285d40a79867457f49626a4fc5f11cedd5
3333
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
3434
refs/heads/beta: 44a287e6eb22ec3c2a687fc156813577464017f7
3535
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928

branches/batch/src/test/compile-fail/fail-no-dead-code-core.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
#![deny(dead_code)]
1212
#![allow(unreachable_code)]
13+
#![allow(unstable)]
1314

1415
#[macro_use] extern crate core;
1516

branches/batch/src/test/compile-fail/issue-17999.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
#![deny(unused_variables)]
12+
#![allow(unstable)]
1213

1314
fn main() {
1415
for _ in range(1is, 101) {

branches/batch/src/test/compile-fail/lint-ctypes.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
#![deny(improper_ctypes)]
12+
#![allow(unstable)]
1213

1314
extern crate libc;
1415

branches/batch/src/test/compile-fail/lint-dead-code-1.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#![allow(non_camel_case_types)]
1414
#![allow(non_upper_case_globals)]
1515
#![allow(missing_copy_implementations)]
16+
#![allow(unstable)]
1617
#![deny(dead_code)]
1718

1819
#![crate_type="lib"]

branches/batch/src/test/compile-fail/lint-dead-code-3.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
#![allow(unused_variables)]
1212
#![allow(non_camel_case_types)]
13+
#![allow(unstable)]
1314
#![deny(dead_code)]
1415

1516
#![crate_type="lib"]

branches/batch/src/test/compile-fail/lint-dead-code-4.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
#![allow(unused_variables)]
1212
#![allow(non_camel_case_types)]
13+
#![allow(unstable)]
1314
#![deny(dead_code)]
1415

1516
extern crate libc;

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
#![deny(exceeding_bitshifts)]
1212
#![allow(unused_variables)]
13+
#![allow(unstable)]
1314
#![allow(dead_code)]
1415

1516
fn main() {

branches/batch/src/test/compile-fail/lint-unused-extern-crate.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
#![deny(unused_extern_crates)]
1414
#![allow(unused_variables)]
15+
#![allow(unstable)]
1516

1617
extern crate libc; //~ ERROR: unused extern crate
1718

branches/batch/src/test/compile-fail/lint-uppercase-variables.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
// ignore-tidy-linelength
1212

1313
#![allow(dead_code)]
14+
#![allow(unstable)]
1415
#![deny(non_snake_case)]
1516

1617
use std::io::File;

branches/batch/src/test/compile-fail/liveness-unused.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
#![deny(unused_variables)]
1212
#![deny(unused_assignments)]
13+
#![allow(unstable)]
1314
#![allow(dead_code, non_camel_case_types)]
1415

1516
fn f1(x: isize) {

branches/batch/src/test/compile-fail/unused-attr.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010
#![deny(unused_attributes)]
1111
#![allow(dead_code, unused_imports)]
12+
#![allow(unstable)]
1213

1314
#![foo] //~ ERROR unused attribute
1415

0 commit comments

Comments
 (0)