2021-11-19 22:51:44 -06:00
|
|
|
error[E0277]: the trait bound `fn() -> impl T<O = ()> {foo}: T` is not satisfied
|
2019-09-15 23:58:20 -05:00
|
|
|
--> $DIR/fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:17:9
|
2019-08-24 16:45:03 -05:00
|
|
|
|
|
|
|
|
LL | bar(foo);
|
2022-08-29 08:53:36 -05:00
|
|
|
| --- ^^^ the trait `T` is not implemented for fn item `fn() -> impl T<O = ()> {foo}`
|
2021-09-07 06:30:53 -05:00
|
|
|
| |
|
|
|
|
| required by a bound introduced by this call
|
2020-03-11 22:38:21 -05:00
|
|
|
|
|
2021-07-31 11:26:55 -05:00
|
|
|
note: required by a bound in `bar`
|
|
|
|
--> $DIR/fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:14:16
|
|
|
|
|
|
|
|
|
LL | fn bar(f: impl T<O=()>) {}
|
|
|
|
| ^^^^^^^ required by this bound in `bar`
|
2022-10-09 17:25:52 -05:00
|
|
|
help: use parentheses to call this function
|
2020-03-11 22:38:21 -05:00
|
|
|
|
|
|
|
|
LL | bar(foo());
|
2021-06-21 21:07:19 -05:00
|
|
|
| ++
|
2019-08-24 16:45:03 -05:00
|
|
|
|
2023-09-09 01:36:50 -05:00
|
|
|
error[E0277]: the trait bound `{closure@$DIR/fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:18:19: 18:21}: T` is not satisfied
|
2019-11-08 20:04:05 -06:00
|
|
|
--> $DIR/fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:19:9
|
|
|
|
|
|
|
|
|
LL | bar(closure);
|
2023-09-09 01:36:50 -05:00
|
|
|
| --- ^^^^^^^ the trait `T` is not implemented for closure `{closure@$DIR/fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:18:19: 18:21}`
|
2021-09-07 06:30:53 -05:00
|
|
|
| |
|
|
|
|
| required by a bound introduced by this call
|
2020-03-11 22:38:21 -05:00
|
|
|
|
|
2021-07-31 11:26:55 -05:00
|
|
|
note: required by a bound in `bar`
|
|
|
|
--> $DIR/fn-ctor-passed-as-arg-where-it-should-have-been-called.rs:14:16
|
|
|
|
|
|
|
|
|
LL | fn bar(f: impl T<O=()>) {}
|
|
|
|
| ^^^^^^^ required by this bound in `bar`
|
2022-10-09 17:25:52 -05:00
|
|
|
help: use parentheses to call this closure
|
2020-03-11 22:38:21 -05:00
|
|
|
|
|
|
|
|
LL | bar(closure());
|
2021-06-21 21:07:19 -05:00
|
|
|
| ++
|
2019-11-08 20:04:05 -06:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2019-08-24 16:45:03 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|