]> git.lizzy.rs Git - rust.git/blob - src/test/ui/closures/closure-move-sync.stderr
Rollup merge of #74835 - GuillaumeGomez:cleanup-e0734, r=jyn514
[rust.git] / src / test / ui / closures / closure-move-sync.stderr
1 error[E0277]: `std::sync::mpsc::Receiver<()>` cannot be shared between threads safely
2   --> $DIR/closure-move-sync.rs:6:13
3    |
4 LL |     let t = thread::spawn(|| {
5    |             ^^^^^^^^^^^^^ `std::sync::mpsc::Receiver<()>` cannot be shared between threads safely
6    | 
7   ::: $SRC_DIR/std/src/thread/mod.rs:LL:COL
8    |
9 LL |     F: Send + 'static,
10    |        ---- required by this bound in `std::thread::spawn`
11    |
12    = help: the trait `std::marker::Sync` is not implemented for `std::sync::mpsc::Receiver<()>`
13    = note: required because of the requirements on the impl of `std::marker::Send` for `&std::sync::mpsc::Receiver<()>`
14    = note: required because it appears within the type `[closure@$DIR/closure-move-sync.rs:6:27: 9:6 recv:&std::sync::mpsc::Receiver<()>]`
15
16 error[E0277]: `std::sync::mpsc::Sender<()>` cannot be shared between threads safely
17   --> $DIR/closure-move-sync.rs:18:5
18    |
19 LL |     thread::spawn(|| tx.send(()).unwrap());
20    |     ^^^^^^^^^^^^^ `std::sync::mpsc::Sender<()>` cannot be shared between threads safely
21    | 
22   ::: $SRC_DIR/std/src/thread/mod.rs:LL:COL
23    |
24 LL |     F: Send + 'static,
25    |        ---- required by this bound in `std::thread::spawn`
26    |
27    = help: the trait `std::marker::Sync` is not implemented for `std::sync::mpsc::Sender<()>`
28    = note: required because of the requirements on the impl of `std::marker::Send` for `&std::sync::mpsc::Sender<()>`
29    = note: required because it appears within the type `[closure@$DIR/closure-move-sync.rs:18:19: 18:42 tx:&std::sync::mpsc::Sender<()>]`
30
31 error: aborting due to 2 previous errors
32
33 For more information about this error, try `rustc --explain E0277`.