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

17 lines
521 B
Plaintext
Raw Normal View History

2018-08-08 14:28:26 +02:00
error[E0277]: `std::rc::Rc<{integer}>` cannot be sent between threads safely
2018-12-25 08:56:47 -07:00
--> $DIR/no_send-rc.rs:7:5
2018-08-08 14:28:26 +02:00
|
LL | bar(x);
| ^^^ `std::rc::Rc<{integer}>` cannot be sent between threads safely
|
= help: the trait `std::marker::Send` is not implemented for `std::rc::Rc<{integer}>`
note: required by `bar`
2018-12-25 08:56:47 -07:00
--> $DIR/no_send-rc.rs:3: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`.