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