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 rust-lang#12167 r=alexcrichton
Closes rust-lang#12200 r=alexcrichton
Closes rust-lang#12206 r=pcwalton
Closes rust-lang#12209 r=huonw
Closes rust-lang#12211 r=pcwalton
Closes rust-lang#12217 r=brson
Closes rust-lang#12218 r=alexcrichton
Closes rust-lang#12220 r=alexcrichton
Closes rust-lang#12222 r=kballard
Closes rust-lang#12225 r=alexcrichton
Closes rust-lang#12227 r=kballard
Closes rust-lang#12237 r=alexcrichton
Closes rust-lang#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
Original file line number Diff line number Diff line change
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

2 comments on commit 640b228

@alexcrichton
Copy link
Owner Author

Choose a reason for hiding this comment

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

r+

@alexcrichton
Copy link
Owner Author

Choose a reason for hiding this comment

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

p=10

Please sign in to comment.