2018-05-26 20:51:50 -07:00
|
|
|
error[E0277]: `*mut (dyn std::ops::Fn() + 'static)` cannot be shared between threads safely
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/send-sync.rs:8:5
|
2017-10-11 10:57:30 +02:00
|
|
|
|
|
2019-08-24 14:44:43 -07:00
|
|
|
LL | fn send<T: Send>(_: T) {}
|
2019-09-04 10:17:59 -07:00
|
|
|
| ---- ---- required by this bound in `send`
|
2019-08-24 14:44:43 -07:00
|
|
|
...
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | send(format_args!("{:?}", c));
|
2018-05-26 20:51:50 -07:00
|
|
|
| ^^^^ `*mut (dyn std::ops::Fn() + 'static)` cannot be shared between threads safely
|
2017-10-11 10:57:30 +02:00
|
|
|
|
|
2018-05-26 20:51:50 -07:00
|
|
|
= help: within `[std::fmt::ArgumentV1<'_>]`, the trait `std::marker::Sync` is not implemented for `*mut (dyn std::ops::Fn() + 'static)`
|
|
|
|
= note: required because it appears within the type `std::marker::PhantomData<*mut (dyn std::ops::Fn() + 'static)>`
|
2017-10-11 10:57:30 +02:00
|
|
|
= note: required because it appears within the type `core::fmt::Void`
|
|
|
|
= note: required because it appears within the type `&core::fmt::Void`
|
|
|
|
= note: required because it appears within the type `std::fmt::ArgumentV1<'_>`
|
|
|
|
= note: required because it appears within the type `[std::fmt::ArgumentV1<'_>]`
|
|
|
|
= note: required because of the requirements on the impl of `std::marker::Send` for `&[std::fmt::ArgumentV1<'_>]`
|
|
|
|
= note: required because it appears within the type `std::fmt::Arguments<'_>`
|
|
|
|
|
2018-05-26 20:51:50 -07:00
|
|
|
error[E0277]: `*mut (dyn std::ops::Fn() + 'static)` cannot be shared between threads safely
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/send-sync.rs:9:5
|
2017-10-11 10:57:30 +02:00
|
|
|
|
|
2019-08-24 14:44:43 -07:00
|
|
|
LL | fn sync<T: Sync>(_: T) {}
|
2019-09-04 10:17:59 -07:00
|
|
|
| ---- ---- required by this bound in `sync`
|
2019-08-24 14:44:43 -07:00
|
|
|
...
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | sync(format_args!("{:?}", c));
|
2018-05-26 20:51:50 -07:00
|
|
|
| ^^^^ `*mut (dyn std::ops::Fn() + 'static)` cannot be shared between threads safely
|
2017-10-11 10:57:30 +02:00
|
|
|
|
|
2018-05-26 20:51:50 -07:00
|
|
|
= help: within `std::fmt::Arguments<'_>`, the trait `std::marker::Sync` is not implemented for `*mut (dyn std::ops::Fn() + 'static)`
|
|
|
|
= note: required because it appears within the type `std::marker::PhantomData<*mut (dyn std::ops::Fn() + 'static)>`
|
2017-10-11 10:57:30 +02:00
|
|
|
= note: required because it appears within the type `core::fmt::Void`
|
|
|
|
= note: required because it appears within the type `&core::fmt::Void`
|
|
|
|
= note: required because it appears within the type `std::fmt::ArgumentV1<'_>`
|
|
|
|
= note: required because it appears within the type `[std::fmt::ArgumentV1<'_>]`
|
|
|
|
= note: required because it appears within the type `&[std::fmt::ArgumentV1<'_>]`
|
|
|
|
= note: required because it appears within the type `std::fmt::Arguments<'_>`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0277`.
|