blob: f4ca2d13d09ed908e9a3a4cf5dff0dee024f629e [file] [log] [blame]
//@ run-pass
use std::sync::mpsc::channel;
pub fn main() {
let (tx, rx) = channel::<Box<_>>();
tx.send(Box::new(100)).unwrap();
let v = rx.recv().unwrap();
assert_eq!(v, Box::new(100));
}