rust/src/test/ui/kindck/kindck-send-object2.stderr

33 lines
1.3 KiB
Plaintext
Raw Normal View History

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