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
913 B
Plaintext
Raw Normal View History

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
|
= help: within `Foo`, the trait `Send` is not implemented for `*const u8`
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 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`.