Always use the `Fn(T) -> R` format when printing closure traits instead of `Fn<(T,), Output = R>`. Fix #67100: ``` error[E0277]: expected a `Fn()` closure, found `F` --> file.rs:6:13 | 6 | call_fn(f) | ------- ^ expected an `Fn()` closure, found `F` | | | required by a bound introduced by this call | = note: wrap the `F` in a closure with no arguments: `|| { /* code */ }` note: required by a bound in `call_fn` --> file.rs:1:15 | 1 | fn call_fn<F: Fn() -> ()>(f: &F) { | ^^^^^^^^^^ required by this bound in `call_fn` help: consider further restricting this bound | 5 | fn call_any<F: std::any::Any + Fn()>(f: &F) { | ++++++ ```
21 lines
731 B
Plaintext
21 lines
731 B
Plaintext
error[E0277]: expected a `FnMut(char)` closure, found `u8`
|
|
--> $DIR/assoc-fn-bound-root-obligation.rs:2:7
|
|
|
|
|
LL | s.strip_suffix(b'\n').unwrap_or(s)
|
|
| ^^^^^^^^^^^^ expected an `FnMut(char)` closure, found `u8`
|
|
|
|
|
= help: the trait `FnMut(char)` is not implemented for `u8`, which is required by `u8: Pattern<'_>`
|
|
= help: the following other types implement trait `Pattern<'a>`:
|
|
&'b String
|
|
&'b [char; N]
|
|
&'b [char]
|
|
&'b str
|
|
&'c &'b str
|
|
[char; N]
|
|
char
|
|
= note: required for `u8` to implement `Pattern<'_>`
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|