Skip to content

Commit

Permalink
Fix xfail'd ARC test
Browse files Browse the repository at this point in the history
  • Loading branch information
danluu committed Apr 14, 2013
1 parent 9f337a5 commit caa1079
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/test/run-pass/bind-by-move.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,13 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// xfail-test
// xfail-fast
extern mod std;
use std::arc;
fn dispose(+_x: arc::ARC<bool>) unsafe { }
fn dispose(+_x: arc::ARC<bool>) { unsafe { } }

pub fn main() {
let p = arc::arc(true);
let p = arc::ARC(true);
let x = Some(p);
match x {
Some(z) => { dispose(z); },
Expand Down

5 comments on commit caa1079

@bors
Copy link
Contributor

@bors bors commented on caa1079 Apr 15, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on caa1079 Apr 15, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging danluu/rust/xfail_bind_by_move = caa1079 into auto

@bors
Copy link
Contributor

@bors bors commented on caa1079 Apr 15, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

danluu/rust/xfail_bind_by_move = caa1079 merged ok, testing candidate = 7b152ba

@bors
Copy link
Contributor

@bors bors commented on caa1079 Apr 15, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on caa1079 Apr 15, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding incoming to auto = 7b152ba

Please sign in to comment.