os-rust/tests/ui/error-codes/E0277-2.stderr

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

32 lines
949 B
Text
Raw Normal View History

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
|
= help: within `Foo`, the trait `Send` is not implemented for `*const u8`, which is required by `Foo: Send`
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 {
| ^^^
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 1 previous error
2018-02-07 19:35:35 -08:00
2018-03-03 15:59:40 +01:00
For more information about this error, try `rustc --explain E0277`.