rust/src/test/ui/no_send-enum.stderr

18 lines
554 B
Plaintext
Raw Normal View History

2018-08-08 14:28:26 +02:00
error[E0277]: `NoSend` cannot be sent between threads safely
2018-12-25 08:56:47 -07:00
--> $DIR/no_send-enum.rs:16:5
2018-08-08 14:28:26 +02:00
|
LL | bar(x);
| ^^^ `NoSend` cannot be sent between threads safely
|
= help: within `Foo`, the trait `std::marker::Send` is not implemented for `NoSend`
= note: required because it appears within the type `Foo`
note: required by `bar`
2018-12-25 08:56:47 -07:00
--> $DIR/no_send-enum.rs:12:1
2018-08-08 14:28:26 +02:00
|
LL | fn bar<T: Send>(_: T) {}
| ^^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.