test: Attempt to fix Windows check-fast resolve bustage. rs=bustage

This commit is contained in:
Patrick Walton 2013-01-30 21:57:23 -08:00
parent 767d2c0a97
commit 42b462e076
1 changed files with 1 additions and 1 deletions

View File

@ -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() { }