mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
59 lines
2.1 KiB
Plaintext
59 lines
2.1 KiB
Plaintext
|
error[E0277]: `Cell<i32>` cannot be shared between threads safely
|
||
|
--> $DIR/not-send-sync.rs:16:17
|
||
|
|
|
||
|
LL | assert_send(|| {
|
||
|
| _____-----------_^
|
||
|
| | |
|
||
|
| | required by a bound introduced by this call
|
||
|
LL | |
|
||
|
LL | | drop(&a);
|
||
|
LL | | yield;
|
||
|
LL | | });
|
||
|
| |_____^ `Cell<i32>` cannot be shared between threads safely
|
||
|
|
|
||
|
= help: the trait `Sync` is not implemented for `Cell<i32>`
|
||
|
= note: if you want to do aliasing and mutation between multiple threads, use `std::sync::RwLock` or `std::sync::atomic::AtomicI32` instead
|
||
|
= note: required for `&Cell<i32>` to implement `Send`
|
||
|
note: required because it's used within this generator
|
||
|
--> $DIR/not-send-sync.rs:16:17
|
||
|
|
|
||
|
LL | assert_send(|| {
|
||
|
| ^^
|
||
|
note: required by a bound in `assert_send`
|
||
|
--> $DIR/not-send-sync.rs:7:23
|
||
|
|
|
||
|
LL | fn assert_send<T: Send>(_: T) {}
|
||
|
| ^^^^ required by this bound in `assert_send`
|
||
|
|
||
|
error: generator cannot be shared between threads safely
|
||
|
--> $DIR/not-send-sync.rs:9:17
|
||
|
|
|
||
|
LL | assert_sync(|| {
|
||
|
| _________________^
|
||
|
LL | |
|
||
|
LL | | let a = Cell::new(2);
|
||
|
LL | | yield;
|
||
|
LL | | });
|
||
|
| |_____^ generator is not `Sync`
|
||
|
|
|
||
|
= help: within `{generator@$DIR/not-send-sync.rs:9:17: 9:19}`, the trait `Sync` is not implemented for `Cell<i32>`
|
||
|
= note: if you want to do aliasing and mutation between multiple threads, use `std::sync::RwLock` or `std::sync::atomic::AtomicI32` instead
|
||
|
note: generator is not `Sync` as this value is used across a yield
|
||
|
--> $DIR/not-send-sync.rs:12:9
|
||
|
|
|
||
|
LL | let a = Cell::new(2);
|
||
|
| - has type `Cell<i32>` which is not `Sync`
|
||
|
LL | yield;
|
||
|
| ^^^^^ yield occurs here, with `a` maybe used later
|
||
|
LL | });
|
||
|
| - `a` is later dropped here
|
||
|
note: required by a bound in `assert_sync`
|
||
|
--> $DIR/not-send-sync.rs:6:23
|
||
|
|
|
||
|
LL | fn assert_sync<T: Sync>(_: T) {}
|
||
|
| ^^^^ required by this bound in `assert_sync`
|
||
|
|
||
|
error: aborting due to 2 previous errors
|
||
|
|
||
|
For more information about this error, try `rustc --explain E0277`.
|