Skip to content

Commit

Permalink
test: Attempt to fix Windows check-fast resolve bustage. rs=bustage
Browse files Browse the repository at this point in the history
  • Loading branch information
pcwalton committed Jan 31, 2013
1 parent 767d2c0 commit 42b462e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/run-pass/send-type-inference.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use core::pipes::*;
type command<K, V> = {key: K, val: V};

fn cache_server<K: Owned, V: Owned>(c: Chan<Chan<command<K, V>>>) {
let (ctrl_port, ctrl_chan) = core::pipes::stream();
let (ctrl_port, ctrl_chan) = stream();
c.send(ctrl_chan);
}
fn main() { }

0 comments on commit 42b462e

Please sign in to comment.