mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 08:15:58 +00:00
19 lines
369 B
Rust
19 lines
369 B
Rust
//@ run-pass
|
|
#![allow(unused_must_use)]
|
|
//@ needs-threads
|
|
|
|
use std::sync::mpsc::{channel, Sender};
|
|
use std::thread;
|
|
|
|
fn start(tx: &Sender<Sender<isize>>) {
|
|
let (tx2, _rx) = channel();
|
|
tx.send(tx2).unwrap();
|
|
}
|
|
|
|
pub fn main() {
|
|
let (tx, rx) = channel();
|
|
let child = thread::spawn(move || start(&tx));
|
|
let _tx = rx.recv().unwrap();
|
|
child.join();
|
|
}
|