Skip to content

Commit

Permalink
Test case for #2930
Browse files Browse the repository at this point in the history
  • Loading branch information
eholk committed Jul 16, 2012
1 parent d39f6fc commit 053bdca
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions src/test/run-pass/issue-2930.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
// xfail-pretty
// xfail-win32
// xfail-test

// Generated from pipe compiler
mod stream {
fn init<T: send>() -> (client::stream<T>, server::stream<T>) {
pipes::entangle()
}
enum stream<T: send> { send(T, server::stream<T>), }
mod client {
fn send<T: send>(+pipe: stream<T>, +x_0: T) -> stream<T> {
{
let (c, s) = pipes::entangle();
let message = stream::send(x_0, s);
pipes::send(pipe, message);
c
}
}
type stream<T: send> = pipes::send_packet<stream::stream<T>>;
}
mod server {
type stream<T: send> = pipes::recv_packet<stream::stream<T>>;
}
}

fn main() {
let (bc, _bp) = stream::init();

stream::client::send(bc, "abc");
}

0 comments on commit 053bdca

Please sign in to comment.