2020-12-19 21:52:19 +00:00
|
|
|
error[E0277]: `<impl Foo as Foo>::Bar` cannot be sent between threads safely
|
|
|
|
--> $DIR/issue-79843-impl-trait-with-missing-bounds-on-async-fn.rs:14:20
|
|
|
|
|
|
|
|
|
LL | assert_is_send(&bar);
|
2021-09-07 11:30:53 +00:00
|
|
|
| -------------- ^^^^ `<impl Foo as Foo>::Bar` cannot be sent between threads safely
|
|
|
|
| |
|
|
|
|
| required by a bound introduced by this call
|
2020-12-19 21:52:19 +00:00
|
|
|
|
|
|
|
|
= help: the trait `Send` is not implemented for `<impl Foo as Foo>::Bar`
|
2021-07-31 16:26:55 +00:00
|
|
|
note: required by a bound in `assert_is_send`
|
|
|
|
--> $DIR/issue-79843-impl-trait-with-missing-bounds-on-async-fn.rs:30:22
|
|
|
|
|
|
|
|
|
LL | fn assert_is_send<T: Send>(_: &T) {}
|
|
|
|
| ^^^^ required by this bound in `assert_is_send`
|
2020-12-19 21:52:19 +00:00
|
|
|
help: introduce a type parameter with a trait bound instead of using `impl Trait`
|
|
|
|
|
|
|
|
|
LL | async fn run<F: Foo>(_: &(), foo: F) -> std::io::Result<()> where <F as Foo>::Bar: Send {
|
2021-06-22 02:07:19 +00:00
|
|
|
| ++++++++ ~ +++++++++++++++++++++++++++
|
2020-12-19 21:52:19 +00:00
|
|
|
|
|
|
|
error[E0277]: `<impl Foo as Foo>::Bar` cannot be sent between threads safely
|
|
|
|
--> $DIR/issue-79843-impl-trait-with-missing-bounds-on-async-fn.rs:24:20
|
|
|
|
|
|
|
|
|
LL | assert_is_send(&bar);
|
2021-09-07 11:30:53 +00:00
|
|
|
| -------------- ^^^^ `<impl Foo as Foo>::Bar` cannot be sent between threads safely
|
|
|
|
| |
|
|
|
|
| required by a bound introduced by this call
|
2020-12-19 21:52:19 +00:00
|
|
|
|
|
|
|
|
= help: the trait `Send` is not implemented for `<impl Foo as Foo>::Bar`
|
2021-07-31 16:26:55 +00:00
|
|
|
note: required by a bound in `assert_is_send`
|
|
|
|
--> $DIR/issue-79843-impl-trait-with-missing-bounds-on-async-fn.rs:30:22
|
|
|
|
|
|
|
|
|
LL | fn assert_is_send<T: Send>(_: &T) {}
|
|
|
|
| ^^^^ required by this bound in `assert_is_send`
|
2020-12-19 21:52:19 +00:00
|
|
|
help: introduce a type parameter with a trait bound instead of using `impl Trait`
|
|
|
|
|
|
|
|
|
LL | async fn run2<F: Foo>(_: &(), foo: F) -> std::io::Result<()> where <F as Foo>::Bar: Send {
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~~~~~~~ ~ +++++++++++++++++++++++++++
|
2020-12-19 21:52:19 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|