|
| 1 | +error[E0277]: the trait bound `*mut std::ops::Fn() + 'static: std::marker::Sync` is not satisfied in `[std::fmt::ArgumentV1<'_>]` |
| 2 | + --> $DIR/send-sync.rs:18:5 |
| 3 | + | |
| 4 | +18 | send(format_args!("{:?}", c)); |
| 5 | + | ^^^^ `*mut std::ops::Fn() + 'static` cannot be shared between threads safely |
| 6 | + | |
| 7 | + = help: within `[std::fmt::ArgumentV1<'_>]`, the trait `std::marker::Sync` is not implemented for `*mut std::ops::Fn() + 'static` |
| 8 | + = note: required because it appears within the type `std::marker::PhantomData<*mut std::ops::Fn() + 'static>` |
| 9 | + = note: required because it appears within the type `core::fmt::Void` |
| 10 | + = note: required because it appears within the type `&core::fmt::Void` |
| 11 | + = note: required because it appears within the type `std::fmt::ArgumentV1<'_>` |
| 12 | + = note: required because it appears within the type `[std::fmt::ArgumentV1<'_>]` |
| 13 | + = note: required because of the requirements on the impl of `std::marker::Send` for `&[std::fmt::ArgumentV1<'_>]` |
| 14 | + = note: required because it appears within the type `std::fmt::Arguments<'_>` |
| 15 | + = note: required by `send` |
| 16 | + |
| 17 | +error[E0277]: the trait bound `*mut std::ops::Fn() + 'static: std::marker::Sync` is not satisfied in `std::fmt::Arguments<'_>` |
| 18 | + --> $DIR/send-sync.rs:19:5 |
| 19 | + | |
| 20 | +19 | sync(format_args!("{:?}", c)); |
| 21 | + | ^^^^ `*mut std::ops::Fn() + 'static` cannot be shared between threads safely |
| 22 | + | |
| 23 | + = help: within `std::fmt::Arguments<'_>`, the trait `std::marker::Sync` is not implemented for `*mut std::ops::Fn() + 'static` |
| 24 | + = note: required because it appears within the type `std::marker::PhantomData<*mut std::ops::Fn() + 'static>` |
| 25 | + = note: required because it appears within the type `core::fmt::Void` |
| 26 | + = note: required because it appears within the type `&core::fmt::Void` |
| 27 | + = note: required because it appears within the type `std::fmt::ArgumentV1<'_>` |
| 28 | + = note: required because it appears within the type `[std::fmt::ArgumentV1<'_>]` |
| 29 | + = note: required because it appears within the type `&[std::fmt::ArgumentV1<'_>]` |
| 30 | + = note: required because it appears within the type `std::fmt::Arguments<'_>` |
| 31 | + = note: required by `sync` |
| 32 | + |
| 33 | +error: aborting due to 2 previous errors |
| 34 | + |
0 commit comments