mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
17 lines
314 B
Rust
17 lines
314 B
Rust
use std::thread;
|
|
use std::sync::mpsc::channel;
|
|
|
|
fn bar() {
|
|
let (send, recv) = channel();
|
|
let t = thread::spawn(|| {
|
|
recv.recv().unwrap();
|
|
//~^^ ERROR `std::sync::mpsc::Receiver<()>` cannot be shared between threads safely
|
|
});
|
|
|
|
send.send(());
|
|
|
|
t.join().unwrap();
|
|
}
|
|
|
|
fn main() {}
|