]> git.proxmox.com Git - rustc.git/blame - src/test/ui/suggestions/async-fn-ctor-passed-as-arg-where-it-should-have-been-called.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / suggestions / async-fn-ctor-passed-as-arg-where-it-should-have-been-called.stderr
CommitLineData
e1599b0c 1error[E0277]: the trait bound `fn() -> impl std::future::Future {foo}: std::future::Future` is not satisfied
60c5eb7d 2 --> $DIR/async-fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:10:9
e1599b0c 3 |
60c5eb7d
XL
4LL | async fn foo() {}
5 | --- consider calling this function
6LL |
e1599b0c 7LL | fn bar(f: impl Future<Output=()>) {}
ba9703b0 8 | ----------------- required by this bound in `bar`
e1599b0c
XL
9...
10LL | bar(foo);
ba9703b0
XL
11 | ^^^ the trait `std::future::Future` is not implemented for `fn() -> impl std::future::Future {foo}`
12 |
13help: use parentheses to call the function
14 |
15LL | bar(foo());
16 | ^^
e1599b0c 17
60c5eb7d
XL
18error[E0277]: the trait bound `[closure@$DIR/async-fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:11:25: 11:36]: std::future::Future` is not satisfied
19 --> $DIR/async-fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:12:9
20 |
21LL | fn bar(f: impl Future<Output=()>) {}
ba9703b0 22 | ----------------- required by this bound in `bar`
60c5eb7d
XL
23...
24LL | let async_closure = async || ();
25 | -------- consider calling this closure
26LL | bar(async_closure);
ba9703b0
XL
27 | ^^^^^^^^^^^^^ the trait `std::future::Future` is not implemented for `[closure@$DIR/async-fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:11:25: 11:36]`
28 |
29help: use parentheses to call the closure
30 |
31LL | bar(async_closure());
32 | ^^
60c5eb7d
XL
33
34error: aborting due to 2 previous errors
e1599b0c
XL
35
36For more information about this error, try `rustc --explain E0277`.