blob: a5c7561b9ae3cf652f43954916ae928adb8e4f83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// run-pass
#![feature(box_syntax)]
use std::sync::mpsc::channel;
pub fn main() {
let (tx, rx) = channel::<Box<_>>();
tx.send(box 100).unwrap();
let v = rx.recv().unwrap();
assert_eq!(v, box 100);
}
|