2021-11-17 00:16:23 +00:00
error[E0277]: `fn() -> impl Future<Output = ()> {foo}` is not a future
2019-11-09 02:04:05 +00:00
--> $DIR/async-fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:10:9
2019-08-24 21:45:03 +00:00
|
LL | bar(foo);
2021-11-17 00:16:23 +00:00
| --- ^^^ `fn() -> impl Future<Output = ()> {foo}` is not a future
2021-09-07 11:30:53 +00:00
| |
| required by a bound introduced by this call
2020-03-12 03:38:21 +00:00
|
2022-08-29 13:53:36 +00:00
= help: the trait `Future` is not implemented for fn item `fn() -> impl Future<Output = ()> {foo}`
2021-12-03 00:12:25 +00:00
= note: fn() -> impl Future<Output = ()> {foo} must be a future or must implement `IntoFuture` to be awaited
2021-07-31 16:26:55 +00:00
note: required by a bound in `bar`
--> $DIR/async-fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:7:16
|
LL | fn bar(f: impl Future<Output=()>) {}
| ^^^^^^^^^^^^^^^^^ required by this bound in `bar`
2022-10-09 22:25:52 +00:00
help: use parentheses to call this function
2020-03-12 03:38:21 +00:00
|
LL | bar(foo());
2021-06-22 02:07:19 +00:00
| ++
2019-08-24 21:45:03 +00:00
2024-02-10 22:43:35 +00:00
error[E0277]: `{async closure@$DIR/async-fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:11:25: 11:33}` is not a future
2019-11-09 02:04:05 +00:00
--> $DIR/async-fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:12:9
|
LL | bar(async_closure);
2024-02-10 22:43:35 +00:00
| --- ^^^^^^^^^^^^^ `{async closure@$DIR/async-fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:11:25: 11:33}` is not a future
2021-09-07 11:30:53 +00:00
| |
| required by a bound introduced by this call
2020-03-12 03:38:21 +00:00
|
2024-02-10 22:43:35 +00:00
= help: the trait `Future` is not implemented for `{async closure@$DIR/async-fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:11:25: 11:33}`
= note: {async closure@$DIR/async-fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:11:25: 11:33} must be a future or must implement `IntoFuture` to be awaited
2021-07-31 16:26:55 +00:00
note: required by a bound in `bar`
--> $DIR/async-fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:7:16
|
LL | fn bar(f: impl Future<Output=()>) {}
| ^^^^^^^^^^^^^^^^^ required by this bound in `bar`
2019-11-09 02:04:05 +00:00
error: aborting due to 2 previous errors
2019-08-24 21:45:03 +00:00
For more information about this error, try `rustc --explain E0277`.