Skip to content

Commit 679a9e0

Browse files
committed
---
yaml --- r: 34197 b: refs/heads/snap-stage3 c: d062896 h: refs/heads/master i: 34195: dca1d9f v: v3
1 parent fe93859 commit 679a9e0

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
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: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 6d4fbd4f9ecd914ea85cedd9af89cb3dd3831f8f
4+
refs/heads/snap-stage3: d062896a8bb224f97c9bac804d40b5406a3ac993
55
refs/heads/try: d324a424d8f84b1eb049b12cf34182bda91b0024
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/test/compile-fail/alt-vec-illegal-tail-loan.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// xfail-test
2+
13
fn a() -> &[int] {
24
let vec = [1, 2, 3, 4];
35
let tail = match vec {

branches/snap-stage3/src/test/compile-fail/bind-by-move-no-lvalues-1.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+
// xfail-test
12+
1113
struct X { x: (), }
1214

1315
impl X : Drop {

branches/snap-stage3/src/test/compile-fail/bind-by-move-no-lvalues-2.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+
// xfail-test
12+
1113
struct X { x: (), }
1214

1315
impl X : Drop {

branches/snap-stage3/src/test/compile-fail/borrowck-autoref-3261.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ fn main() {
1919
let mut x = X(Right(main));
2020
do (&mut x).with |opt| { //~ ERROR illegal borrow
2121
match opt {
22-
&Right(f) => {
22+
&Right(ref f) => {
2323
x = X(Left((0,0)));
24-
f()
24+
(*f)()
2525
},
2626
_ => fail
2727
}

branches/snap-stage3/src/test/compile-fail/lint-default-methods.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#[forbid(default_methods)];
22

3-
trait Foo {
4-
fn bar() { io::println("hi"); } //~ ERROR default methods are experimental
3+
trait Foo { //~ ERROR default methods are experimental
4+
fn bar() { io::println("hi"); }
55
}
66

77
fn main() {}

0 commit comments

Comments
 (0)