2021-11-16 18:16:23 -06:00
|
|
|
error[E0277]: the trait bound `Foo: Qux` is not satisfied in `impl Future<Output = ()>`
|
2022-10-01 05:19:31 -05:00
|
|
|
--> $DIR/issue-64130-3-other.rs:27:12
|
2019-10-06 17:14:34 -05:00
|
|
|
|
|
2019-12-16 00:20:30 -06:00
|
|
|
LL | async fn bar() {
|
2021-11-16 18:16:23 -06:00
|
|
|
| - within this `impl Future<Output = ()>`
|
2019-10-06 17:14:34 -05:00
|
|
|
...
|
|
|
|
LL | is_qux(bar());
|
2021-11-16 18:16:23 -06:00
|
|
|
| ^^^^^ within `impl Future<Output = ()>`, the trait `Qux` is not implemented for `Foo`
|
2019-10-06 17:14:34 -05:00
|
|
|
|
|
|
|
|
note: future does not implement `Qux` as this value is used across an await
|
2022-10-01 05:19:31 -05:00
|
|
|
--> $DIR/issue-64130-3-other.rs:21:10
|
2019-10-06 17:14:34 -05:00
|
|
|
|
|
|
|
|
LL | let x = Foo;
|
2020-04-08 13:54:31 -05:00
|
|
|
| - has type `Foo` which does not implement `Qux`
|
2019-10-06 17:14:34 -05:00
|
|
|
LL | baz().await;
|
2021-11-15 18:57:53 -06:00
|
|
|
| ^^^^^^ await occurs here, with `x` maybe used later
|
2019-10-06 17:14:34 -05:00
|
|
|
LL | }
|
|
|
|
| - `x` is later dropped here
|
2021-07-31 11:26:55 -05:00
|
|
|
note: required by a bound in `is_qux`
|
2022-10-01 05:19:31 -05:00
|
|
|
--> $DIR/issue-64130-3-other.rs:17:14
|
2021-07-31 11:26:55 -05:00
|
|
|
|
|
2021-11-16 18:16:23 -06:00
|
|
|
LL | fn is_qux<T: Qux>(t: T) {}
|
2021-07-31 11:26:55 -05:00
|
|
|
| ^^^ required by this bound in `is_qux`
|
2019-10-06 17:14:34 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|