Skip to content

Commit f358539

Browse files
committed
---
yaml --- r: 1309 b: refs/heads/master c: 8640f19 h: refs/heads/master i: 1307: 0295240 v: v3
1 parent ae8fbda commit f358539

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: a2081deb2d16c58f2b367ad8a8d4a047d80f51a6
2+
refs/heads/master: 8640f1991793e1c1ec0c45891bbcc5d3a7b05ebf

trunk/src/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,7 @@ TEST_XFAILS_RUSTC := $(filter-out \
428428
arith-1.rs \
429429
arith-2.rs \
430430
autoderef-full-lval.rs \
431+
bind-exterior.rs \
431432
bind-interior.rs \
432433
bind-thunk.rs \
433434
bind-trivial.rs \
@@ -444,6 +445,7 @@ TEST_XFAILS_RUSTC := $(filter-out \
444445
deref.rs \
445446
div-mod.rs \
446447
drop-bind-thunk-args.rs \
448+
drop-on-empty-block-exit.rs \
447449
drop-on-ret.rs \
448450
fact.rs \
449451
fn-lval.rs \
@@ -468,6 +470,7 @@ TEST_XFAILS_RUSTC := $(filter-out \
468470
large-records.rs \
469471
lazy-init.rs \
470472
lazy-and-or.rs \
473+
leak-box-as-tydesc.rs \
471474
linear-for-loop.rs \
472475
multiline-comment.rs \
473476
mutual-recursion-group.rs \

trunk/src/test/run-pass/box-unbox.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
type box[T] = tup(@T);
22

3-
fn unbox[T](box[T] b) -> T { ret *b._0; }
3+
fn unbox[T](&box[T] b) -> T { ret *b._0; }
44

55
fn main() {
66
let int foo = 17;

0 commit comments

Comments
 (0)