Skip to content

Commit 579b1de

Browse files
committed
---
yaml --- r: 169694 b: refs/heads/master c: ae4bcd4 h: refs/heads/master v: v3
1 parent f808612 commit 579b1de

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: d8598167152fef505189845fa9185c85900c39f1
2+
refs/heads/master: ae4bcd41e8014b6057fe0a328c87f32f917396ba
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 5b3cd3900ceda838f5798c30ab96ceb41f962534
55
refs/heads/try: 5204084bd2e46af7cc6e0147430e44dd0d657bbb

trunk/src/test/compile-fail/autoderef-full-lval.rs

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

11+
#![allow(unknown_features)]
12+
#![feature(box_syntax)]
13+
1114
struct clam {
1215
x: Box<isize>,
1316
y: Box<isize>,

trunk/src/test/compile-fail/borrow-tuple-fields.rs

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

11+
#![allow(unknown_features)]
12+
#![feature(box_syntax)]
13+
1114
struct Foo(Box<int>, int);
1215

1316
struct Bar(int, int);

trunk/src/test/compile-fail/borrowck-array-double-move.rs

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

11+
#![allow(unknown_features)]
12+
#![feature(box_syntax)]
13+
1114
fn f() {
1215
let mut a = [box 0i, box 1i];
1316
drop(a[0]);

0 commit comments

Comments
 (0)