Skip to content

Commit

Permalink
Rebase conflicts from this giant stack of patches
Browse files Browse the repository at this point in the history
List of PRs contained in this rollup:

Closes #12167 r=alexcrichton
Closes #12200 r=alexcrichton
Closes #12206 r=pcwalton
Closes #12209 r=huonw
Closes #12211 r=pcwalton
Closes #12217 r=brson
Closes #12218 r=alexcrichton
Closes #12220 r=alexcrichton
Closes #12222 r=kballard
Closes #12225 r=alexcrichton
Closes #12227 r=kballard
Closes #12237 r=alexcrichton
Closes #12240 r=kballard
  • Loading branch information
alexcrichton committed Feb 13, 2014
1 parent 76c313c commit 640b228
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/libstd/comm/select.rs
Expand Up @@ -531,7 +531,7 @@ mod test {
let (p, c) = Chan::new();
c.send(());
select!(
() = p.recv() => {},
() = p.recv() => {}
)
})

Expand All @@ -540,7 +540,7 @@ mod test {
c.send(());
c.send(());
select!(
() = p.recv() => {},
() = p.recv() => {}
)
})

Expand All @@ -549,7 +549,7 @@ mod test {
drop(c.clone());
c.send(());
select!(
() = p.recv() => {},
() = p.recv() => {}
)
})

Expand Down

5 comments on commit 640b228

@bors
Copy link
Contributor

@bors bors commented on 640b228 Feb 13, 2014

Choose a reason for hiding this comment

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

saw approval from alexcrichton
at alexcrichton@640b228

@bors
Copy link
Contributor

@bors bors commented on 640b228 Feb 13, 2014

Choose a reason for hiding this comment

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

merging alexcrichton/rust/rollup = 640b228 into auto

@bors
Copy link
Contributor

@bors bors commented on 640b228 Feb 13, 2014

Choose a reason for hiding this comment

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

alexcrichton/rust/rollup = 640b228 merged ok, testing candidate = 94d453e

@bors
Copy link
Contributor

@bors bors commented on 640b228 Feb 14, 2014

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 640b228 Feb 14, 2014

Choose a reason for hiding this comment

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

fast-forwarding master to auto = 94d453e

Please sign in to comment.