11 lines
206 B
Rust
11 lines
206 B
Rust
//@ 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));
|
|
}
|