mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
11 lines
205 B
Rust
11 lines
205 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));
|
|
}
|