about summary refs log tree commit diff
path: root/tests/ui/box/unit/unique-send.rs
blob: f4ca2d13d09ed908e9a3a4cf5dff0dee024f629e (plain)
1
2
3
4
5
6
7
8
9
10
//@ 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));
}