2022-09-02 23:57:21 -05:00
|
|
|
error[E0631]: type mismatch in closure arguments
|
|
|
|
--> $DIR/multiple-fn-bounds.rs:10:5
|
|
|
|
|
|
|
|
|
LL | foo(move |x| v);
|
2024-01-23 20:52:29 -06:00
|
|
|
| ^^^^--------^^^
|
|
|
|
| | |
|
|
|
|
| | found signature defined here
|
2022-09-02 23:57:21 -05:00
|
|
|
| expected due to this
|
|
|
|
|
|
2023-12-07 21:54:41 -06:00
|
|
|
= note: expected closure signature `fn(_) -> _`
|
2024-01-11 06:02:50 -06:00
|
|
|
found closure signature `fn(&_) -> _`
|
2022-09-02 23:57:21 -05:00
|
|
|
note: closure inferred to have a different signature due to this bound
|
|
|
|
--> $DIR/multiple-fn-bounds.rs:1:11
|
|
|
|
|
|
|
|
|
LL | fn foo<F: Fn(&char) -> bool + Fn(char) -> bool>(f: F) {
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
note: required by a bound in `foo`
|
|
|
|
--> $DIR/multiple-fn-bounds.rs:1:31
|
|
|
|
|
|
|
|
|
LL | fn foo<F: Fn(&char) -> bool + Fn(char) -> bool>(f: F) {
|
|
|
|
| ^^^^^^^^^^^^^^^^ required by this bound in `foo`
|
2023-06-10 17:41:59 -05:00
|
|
|
help: consider adjusting the signature so it does not borrow its argument
|
2023-01-14 17:53:56 -06:00
|
|
|
|
|
|
|
|
LL | foo(move |char| v);
|
|
|
|
| ~~~~
|
2022-09-02 23:57:21 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-09-02 23:57:21 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0631`.
|