rust/tests/ui/no_send-rc.stderr
David Tolnay 823bacb6e3
Revert "Suggest using Arc on !Send/!Sync types"
This reverts commit 9de1a472b68ed85f396b2e2cc79c3ef17584d6e1.
2023-08-28 03:16:48 -07:00

19 lines
584 B
Plaintext

error[E0277]: `Rc<{integer}>` cannot be sent between threads safely
--> $DIR/no_send-rc.rs:7:9
|
LL | bar(x);
| --- ^ `Rc<{integer}>` cannot be sent between threads safely
| |
| required by a bound introduced by this call
|
= help: the trait `Send` is not implemented for `Rc<{integer}>`
note: required by a bound in `bar`
--> $DIR/no_send-rc.rs:3:11
|
LL | fn bar<T: Send>(_: T) {}
| ^^^^ required by this bound in `bar`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.