rust/tests/ui/closures/multiple-fn-bounds.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
1011 B
Plaintext
Raw Normal View History

2022-09-03 04:57:21 +00:00
error[E0631]: type mismatch in closure arguments
--> $DIR/multiple-fn-bounds.rs:10:5
|
LL | foo(move |x| v);
| ^^^^--------^^^
| | |
| | found signature defined here
2022-09-03 04:57:21 +00:00
| expected due to this
|
= note: expected closure signature `fn(_) -> _`
found closure signature `fn(&_) -> _`
2022-09-03 04:57:21 +00: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 22:41:59 +00:00
help: consider adjusting the signature so it does not borrow its argument
|
LL | foo(move |char| v);
| ~~~~
2022-09-03 04:57:21 +00:00
error: aborting due to 1 previous error
2022-09-03 04:57:21 +00:00
For more information about this error, try `rustc --explain E0631`.