2023-01-16 17:51:31 +00:00
|
|
|
error[E0277]: `OnceCell<()>` cannot be shared between threads safely
|
2022-12-12 05:42:45 +00:00
|
|
|
--> $DIR/suggest-once-cell.rs:6:20
|
2023-01-16 17:51:31 +00:00
|
|
|
|
|
|
|
|
LL | require_sync::<std::cell::OnceCell<()>>();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ `OnceCell<()>` cannot be shared between threads safely
|
|
|
|
|
|
|
|
|
= help: the trait `Sync` is not implemented for `OnceCell<()>`
|
|
|
|
= note: if you want to do aliasing and mutation between multiple threads, use `std::sync::OnceLock` instead
|
|
|
|
note: required by a bound in `require_sync`
|
2022-12-12 05:42:45 +00:00
|
|
|
--> $DIR/suggest-once-cell.rs:1:20
|
2023-01-16 17:51:31 +00:00
|
|
|
|
|
|
|
|
LL | fn require_sync<T: Sync>() {}
|
|
|
|
| ^^^^ required by this bound in `require_sync`
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2023-01-16 17:51:31 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|