2018-06-09 23:53:36 +00: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-08 03:35:35 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | is_send::<Foo>();
|
2022-08-16 06:27:22 +00:00
|
|
|
| ^^^ `*const u8` cannot be sent between threads safely
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: within `Foo`, the trait `Send` is not implemented for `*const u8`
|
2021-03-30 20:37:30 +00: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 16:26:55 +00: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-08 03:35:35 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0277`.
|