rust/tests/ui/kindck/kindck-send-object1.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1.4 KiB
Plaintext
Raw Normal View History

error[E0277]: `(dyn Dummy + 'a)` cannot be shared between threads safely
2022-08-16 06:27:22 +00:00
--> $DIR/kindck-send-object1.rs:10:19
|
2019-05-28 18:46:13 +00:00
LL | assert_send::<&'a dyn Dummy>();
2022-08-16 06:27:22 +00:00
| ^^^^^^^^^^^^^ `(dyn Dummy + 'a)` cannot be shared between threads safely
|
= help: the trait `Sync` is not implemented for `(dyn Dummy + 'a)`
= note: required for `&'a (dyn Dummy + 'a)` to implement `Send`
note: required by a bound in `assert_send`
2022-04-01 17:13:25 +00:00
--> $DIR/kindck-send-object1.rs:5:18
|
LL | fn assert_send<T:Send+'static>() { }
| ^^^^ required by this bound in `assert_send`
error[E0277]: `(dyn Dummy + 'a)` cannot be sent between threads safely
2022-08-16 06:27:22 +00:00
--> $DIR/kindck-send-object1.rs:28:19
|
2019-05-28 18:46:13 +00:00
LL | assert_send::<Box<dyn Dummy + 'a>>();
2022-08-16 06:27:22 +00:00
| ^^^^^^^^^^^^^^^^^^^ `(dyn Dummy + 'a)` cannot be sent between threads safely
|
= help: the trait `Send` is not implemented for `(dyn Dummy + 'a)`
= note: required for `Unique<(dyn Dummy + 'a)>` to implement `Send`
note: required because it appears within the type `Box<dyn Dummy>`
--> $SRC_DIR/alloc/src/boxed.rs:LL:COL
note: required by a bound in `assert_send`
2022-04-01 17:13:25 +00:00
--> $DIR/kindck-send-object1.rs:5:18
|
LL | fn assert_send<T:Send+'static>() { }
| ^^^^ required by this bound in `assert_send`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0277`.