2018-08-08 14:28:26 +02:00
|
|
|
error[E0277]: `(dyn Dummy + 'static)` cannot be shared between threads safely
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/kindck-send-object2.rs:7:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-08-24 14:44:43 -07:00
|
|
|
LL | fn assert_send<T:Send>() { }
|
2020-04-05 22:15:06 -07:00
|
|
|
| ---- required by this bound in `assert_send`
|
2019-08-24 14:44:43 -07:00
|
|
|
...
|
2019-05-28 14:46:13 -04:00
|
|
|
LL | assert_send::<&'static dyn Dummy>();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `(dyn Dummy + 'static)` cannot be shared between threads safely
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
= help: the trait `std::marker::Sync` is not implemented for `(dyn Dummy + 'static)`
|
|
|
|
= note: required because of the requirements on the impl of `std::marker::Send` for `&'static (dyn Dummy + 'static)`
|
|
|
|
|
|
|
|
error[E0277]: `dyn Dummy` cannot be sent between threads safely
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/kindck-send-object2.rs:12:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-08-24 14:44:43 -07:00
|
|
|
LL | fn assert_send<T:Send>() { }
|
2020-04-05 22:15:06 -07:00
|
|
|
| ---- required by this bound in `assert_send`
|
2019-08-24 14:44:43 -07:00
|
|
|
...
|
2019-05-28 14:46:13 -04:00
|
|
|
LL | assert_send::<Box<dyn Dummy>>();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `dyn Dummy` cannot be sent between threads safely
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
= help: the trait `std::marker::Send` is not implemented for `dyn Dummy`
|
|
|
|
= note: required because of the requirements on the impl of `std::marker::Send` for `std::ptr::Unique<dyn Dummy>`
|
|
|
|
= note: required because it appears within the type `std::boxed::Box<dyn Dummy>`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|