about summary refs log tree commit diff
path: root/tests/ui/threads-sendsync/trivial-message.rs
blob: d76ba0009dca2ea230f23fbe5135b33b1a75d486 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//@ run-pass

#![allow(unused_must_use)]
/*
 This is about the simplest program that can successfully send a
 message.
*/

use std::sync::mpsc::channel;

pub fn main() {
    let (tx, rx) = channel();
    tx.send(42);
    let r = rx.recv();
    println!("{:?}", r);
}