Skip to content

Commit 01c1777

Browse files
committed
---
yaml --- r: 171092 b: refs/heads/try c: e318125 h: refs/heads/master v: v3
1 parent 81ea757 commit 01c1777

12 files changed

+18
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 73a25f55ad748b4d3516417c711b99ce446591af
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 5b3cd3900ceda838f5798c30ab96ceb41f962534
5-
refs/heads/try: ef5e8fc1381dc4d3d74e9f933c836c320f450d80
5+
refs/heads/try: e3181256d4d2d98b5f4c6730fe5c34acc8881c8d
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
88
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/try/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/try/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/try/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/try/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/try/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/try/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/try/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/try/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/try/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/try/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/try/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)