Skip to content

Commit 667a9a0

Browse files
committed
---
yaml --- r: 179964 b: refs/heads/snap-stage3 c: 23e9d7c h: refs/heads/master v: v3
1 parent 45c9638 commit 667a9a0

23 files changed

+23
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 5936278ed6bef736f6eb8c0dd4d650fd8e10461b
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: e5ec43e217703c19f58842ebd8c40d35345bd896
4+
refs/heads/snap-stage3: 23e9d7cbe44157f7903d314e18d2089bf0b200a8
55
refs/heads/try: ccf8fedf1cffcb8f6f3581d53d220039e192fe77
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d

branches/snap-stage3/src/test/compile-fail/borrowck-loan-in-overloaded-op.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_patterns)]
1112
#![feature(box_syntax)]
1213

1314
use std::ops::Add;

branches/snap-stage3/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_patterns)]
1213
#![feature(box_syntax)]
1314

1415
fn a() {

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

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

14+
#![feature(box_patterns)]
1415
#![feature(box_syntax)]
1516

1617
trait T {}

branches/snap-stage3/src/test/compile-fail/issue-12116.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_patterns)]
1112
#![feature(box_syntax)]
1213

1314
enum IntList {

branches/snap-stage3/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_patterns)]
1112
#![feature(box_syntax)]
1213

1314
struct HTMLImageData {

branches/snap-stage3/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_patterns)]
1112
#![feature(box_syntax)]
1213

1314
trait MyTrait { }

branches/snap-stage3/src/test/compile-fail/issue-5100.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_patterns)]
1112
#![feature(box_syntax)]
1213

1314
enum A { B, C }

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

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

1111
// ignore-tidy-linelength
1212

13+
#![feature(box_patterns)]
1314
#![feature(box_syntax)]
1415

1516
struct S {

branches/snap-stage3/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_patterns)]
1112
#![feature(box_syntax)]
1213

1314
fn arg_item(box ref x: Box<isize>) -> &'static isize {

branches/snap-stage3/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_patterns)]
1314
#![feature(box_syntax)]
1415

1516
enum foo { a(Box<foo>, isize), b(usize), }

branches/snap-stage3/src/test/run-pass/borrowck-macro-interaction-issue-6304.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
// Check that we do not ICE when compiling this
1212
// macro, which reuses the expression `$id`
1313

14+
#![feature(box_patterns)]
1415
#![feature(box_syntax)]
1516

1617
struct Foo {

branches/snap-stage3/src/test/run-pass/cleanup-rvalue-scopes.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// statement or end of block, as appropriate given the temporary
1313
// lifetime rules.
1414

15+
#![feature(box_patterns)]
1516
#![feature(box_syntax)]
1617

1718
use std::ops::Drop;

branches/snap-stage3/src/test/run-pass/func-arg-ref-pattern.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
// pattern.
1616

1717
#![allow(unknown_features)]
18+
#![feature(box_patterns)]
1819
#![feature(box_syntax)]
1920

2021
fn getaddr(box ref x: Box<uint>) -> *const uint {

branches/snap-stage3/src/test/run-pass/issue-11552.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
#![allow(unknown_features)]
12+
#![feature(box_patterns)]
1213
#![feature(box_syntax)]
1314

1415
#[derive(Clone)]

branches/snap-stage3/src/test/run-pass/issue-16774.rs

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

1111
#![allow(unknown_features)]
1212
#![feature(box_syntax)]
13+
#![feature(box_patterns)]
1314
#![feature(unboxed_closures)]
1415

1516
use std::ops::{Deref, DerefMut};

branches/snap-stage3/src/test/run-pass/issue-21033.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10+
#![feature(box_patterns)]
1011
#![feature(box_syntax)]
1112

1213
enum E {

branches/snap-stage3/src/test/run-pass/issue-6557.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
#![allow(unknown_features)]
12+
#![feature(box_patterns)]
1213
#![feature(box_syntax)]
1314

1415
fn foo(box (_x, _y): Box<(int, int)>) {}

branches/snap-stage3/src/test/run-pass/match-unique-bind.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
#![allow(unknown_features)]
12+
#![feature(box_patterns)]
1213
#![feature(box_syntax)]
1314

1415
pub fn main() {

branches/snap-stage3/src/test/run-pass/regions-dependent-addr-of.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// Issue #3148.
1313

1414
#![allow(unknown_features)]
15+
#![feature(box_patterns)]
1516
#![feature(box_syntax)]
1617

1718
struct A {

branches/snap-stage3/src/test/run-pass/unique-destructure.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
#![allow(unknown_features)]
12+
#![feature(box_patterns)]
1213
#![feature(box_syntax)]
1314

1415
struct Foo { a: int, b: int }

branches/snap-stage3/src/test/run-pass/unique-pat-2.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
#![allow(unknown_features)]
12+
#![feature(box_patterns)]
1213
#![feature(box_syntax)]
1314

1415
struct Foo {a: int, b: uint}

branches/snap-stage3/src/test/run-pass/unique-pat.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
#![allow(unknown_features)]
12+
#![feature(box_patterns)]
1213
#![feature(box_syntax)]
1314

1415
fn simple() {

0 commit comments

Comments
 (0)