File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: a2081deb2d16c58f2b367ad8a8d4a047d80f51a6
2
+ refs/heads/master: 8640f1991793e1c1ec0c45891bbcc5d3a7b05ebf
Original file line number Diff line number Diff line change @@ -428,6 +428,7 @@ TEST_XFAILS_RUSTC := $(filter-out \
428
428
arith-1.rs \
429
429
arith-2.rs \
430
430
autoderef-full-lval.rs \
431
+ bind-exterior.rs \
431
432
bind-interior.rs \
432
433
bind-thunk.rs \
433
434
bind-trivial.rs \
@@ -444,6 +445,7 @@ TEST_XFAILS_RUSTC := $(filter-out \
444
445
deref.rs \
445
446
div-mod.rs \
446
447
drop-bind-thunk-args.rs \
448
+ drop-on-empty-block-exit.rs \
447
449
drop-on-ret.rs \
448
450
fact.rs \
449
451
fn-lval.rs \
@@ -468,6 +470,7 @@ TEST_XFAILS_RUSTC := $(filter-out \
468
470
large-records.rs \
469
471
lazy-init.rs \
470
472
lazy-and-or.rs \
473
+ leak-box-as-tydesc.rs \
471
474
linear-for-loop.rs \
472
475
multiline-comment.rs \
473
476
mutual-recursion-group.rs \
Original file line number Diff line number Diff line change 1
1
type box [ T ] = tup ( @T ) ;
2
2
3
- fn unbox[ T ] ( box[ T ] b) -> T { ret * b. _0 ; }
3
+ fn unbox[ T ] ( & box[ T ] b) -> T { ret * b. _0 ; }
4
4
5
5
fn main ( ) {
6
6
let int foo = 17 ;
You can’t perform that action at this time.
0 commit comments