mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 09:44:08 +00:00
18 lines
768 B
Plaintext
18 lines
768 B
Plaintext
error[E0277]: `impl Sized` cannot be sent between threads safely
|
|
--> $DIR/check-wf-on-non-defaulted-rpitit.rs:6:17
|
|
|
|
|
LL | fn bar() -> Wrapper<impl Sized>;
|
|
| ^^^^^^^^^^^^^^^^^^^ `impl Sized` cannot be sent between threads safely
|
|
|
|
|
= help: the trait `Send` is not implemented for `impl Sized`
|
|
= note: consider using `std::sync::Arc<impl Sized>`; for more information visit <https://doc.rust-lang.org/book/ch16-03-shared-state.html>
|
|
note: required by a bound in `Wrapper`
|
|
--> $DIR/check-wf-on-non-defaulted-rpitit.rs:3:19
|
|
|
|
|
LL | struct Wrapper<G: Send>(G);
|
|
| ^^^^ required by this bound in `Wrapper`
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|