``` io fn main() { let port[int] p = port(); auto c = chan(p); c <| 3; } ``` fails at runtime with: ``` rt: fatal, 'leaked memory in rust main loop (5 objects)' failed, rt/rust.cpp:33 ``` Commenting out the send and "io" removes the leak.