2018-06-09 16:53:36 -07:00
|
|
|
error[E0277]: `*const u8` cannot be sent between threads safely
|
2022-08-16 06:27:22 +00:00
|
|
|
--> $DIR/E0277-2.rs:16:15
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | is_send::<Foo>();
|
2022-08-16 06:27:22 +00:00
|
|
|
| ^^^ `*const u8` cannot be sent between threads safely
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
= help: within `Foo`, the trait `Send` is not implemented for `*const u8`
|
2021-03-30 13:37:30 -07:00
|
|
|
note: required because it appears within the type `Baz`
|
|
|
|
--> $DIR/E0277-2.rs:9:8
|
|
|
|
|
|
|
|
|
LL | struct Baz {
|
|
|
|
| ^^^
|
|
|
|
note: required because it appears within the type `Bar`
|
|
|
|
--> $DIR/E0277-2.rs:5:8
|
|
|
|
|
|
|
|
|
LL | struct Bar {
|
|
|
|
| ^^^
|
|
|
|
note: required because it appears within the type `Foo`
|
|
|
|
--> $DIR/E0277-2.rs:1:8
|
|
|
|
|
|
|
|
|
LL | struct Foo {
|
|
|
|
| ^^^
|
2021-07-31 09:26:55 -07:00
|
|
|
note: required by a bound in `is_send`
|
|
|
|
--> $DIR/E0277-2.rs:13:15
|
|
|
|
|
|
|
|
|
LL | fn is_send<T: Send>() { }
|
|
|
|
| ^^^^ required by this bound in `is_send`
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0277`.
|