mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
823bacb6e3
This reverts commit 9de1a472b6
.
22 lines
689 B
Plaintext
22 lines
689 B
Plaintext
error[E0277]: `T` cannot be sent between threads safely
|
|
--> $DIR/bad-method-typaram-kind.rs:2:13
|
|
|
|
|
LL | 1.bar::<T>();
|
|
| --- ^ `T` cannot be sent between threads safely
|
|
| |
|
|
| required by a bound introduced by this call
|
|
|
|
|
note: required by a bound in `Bar::bar`
|
|
--> $DIR/bad-method-typaram-kind.rs:6:14
|
|
|
|
|
LL | fn bar<T:Send>(&self);
|
|
| ^^^^ required by this bound in `Bar::bar`
|
|
help: consider further restricting this bound
|
|
|
|
|
LL | fn foo<T:'static + std::marker::Send>() {
|
|
| +++++++++++++++++++
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|