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