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-object.rs:12:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | assert_send::<&'static (Dummy+'static)>();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `(dyn Dummy + 'static)` cannot be shared between threads safely
|
|
|
|
|
|
|
|
|
= 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)`
|
|
|
|
note: required by `assert_send`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/kindck-send-object.rs:5:1
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | fn assert_send<T:Send>() { }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0277]: `dyn Dummy` cannot be sent between threads safely
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/kindck-send-object.rs:17:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | assert_send::<Box<Dummy>>();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ `dyn Dummy` cannot be sent between threads safely
|
|
|
|
|
|
|
|
|
= 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>`
|
|
|
|
note: required by `assert_send`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/kindck-send-object.rs:5:1
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | fn assert_send<T:Send>() { }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|