Skip to content

Commit 7063571

Browse files
committed
---
yaml --- r: 171591 b: refs/heads/batch c: e318125 h: refs/heads/master i: 171589: 0cc477d 171587: 9467337 171583: f109b84 v: v3
1 parent f66cb9b commit 7063571

12 files changed

+18
-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: ef5e8fc1381dc4d3d74e9f933c836c320f450d80
32+
refs/heads/batch: e3181256d4d2d98b5f4c6730fe5c34acc8881c8d
3333
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
3434
refs/heads/beta: 496dc4eae7de9d14cd49511a9acfbf5f11ae6c3f
3535
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928

branches/batch/src/test/compile-fail/borrowck-loan-in-overloaded-op.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(box_syntax)]
12+
1113
use std::ops::Add;
1214

1315
#[derive(Clone)]

branches/batch/src/test/compile-fail/borrowck-vec-pattern-nesting.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
#![feature(advanced_slice_patterns)]
12+
#![feature(box_syntax)]
1213

1314
fn a() {
1415
let mut vec = [box 1i, box 2, box 3];

branches/batch/src/test/compile-fail/destructure-trait-ref.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
// The regression test for #15031 to make sure destructuring trait
1212
// reference work properly.
1313

14+
#![feature(box_syntax)]
15+
1416
trait T {}
1517
impl T for int {}
1618

branches/batch/src/test/compile-fail/issue-12116.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(box_syntax)]
12+
1113
enum IntList {
1214
Cons(int, Box<IntList>),
1315
Nil

branches/batch/src/test/compile-fail/issue-14084.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(box_syntax)]
12+
1113
fn main() {
1214
box ( () ) 0;
1315
//~^ ERROR: only the managed heap and exchange heap are currently supported

branches/batch/src/test/compile-fail/issue-3601.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(box_syntax)]
1112

1213
struct HTMLImageData {
1314
image: Option<String>

branches/batch/src/test/compile-fail/issue-4972.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(box_syntax)]
1112

1213
trait MyTrait { }
1314

branches/batch/src/test/compile-fail/issue-5100.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(box_syntax)]
12+
1113
enum A { B, C }
1214

1315
fn main() {

branches/batch/src/test/compile-fail/moves-based-on-type-block-bad.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
// ignore-tidy-linelength
1212

13+
#![feature(box_syntax)]
14+
1315
struct S {
1416
x: Box<E>
1517
}

branches/batch/src/test/compile-fail/regions-ref-in-fn-arg.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(box_syntax)]
1112

1213
fn arg_item(box ref x: Box<int>) -> &'static int {
1314
x //~^ ERROR borrowed value does not live long enough

branches/batch/src/test/compile-fail/unreachable-arm.rs

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

1111
// error-pattern:unreachable pattern
1212

13+
#![feature(box_syntax)]
1314

1415
enum foo { a(Box<foo>, int), b(uint), }
1516

0 commit comments

Comments
 (0)