Expand the primary span of E0277 when the immediate unmet bound is not what the user wrote: ``` error[E0277]: the trait bound `i32: Bar` is not satisfied --> f100.rs:6:6 | 6 | <i32 as Foo>::foo(); | ^^^ the trait `Bar` is not implemented for `i32`, which is required by `i32: Foo` | help: this trait has no implementations, consider adding one --> f100.rs:2:1 | 2 | trait Bar {} | ^^^^^^^^^ note: required for `i32` to implement `Foo` --> f100.rs:3:14 | 3 | impl<T: Bar> Foo for T {} | --- ^^^ ^ | | | unsatisfied trait bound introduced here ``` Fix #40120.
22 lines
925 B
Plaintext
22 lines
925 B
Plaintext
error[E0277]: expected a `Fn(char)` closure, found `char`
|
|
--> $DIR/root-obligation.rs:6:38
|
|
|
|
|
LL | .filter(|c| "aeiou".contains(c))
|
|
| -------- ^ expected an `Fn(char)` closure, found `char`
|
|
| |
|
|
| required by a bound introduced by this call
|
|
|
|
|
= help: the trait `Fn<(char,)>` is not implemented for `char`, which is required by `&char: Pattern<'_>`
|
|
= note: required for `&char` to implement `FnOnce<(char,)>`
|
|
= note: required for `&char` to implement `Pattern<'_>`
|
|
note: required by a bound in `core::str::<impl str>::contains`
|
|
--> $SRC_DIR/core/src/str/mod.rs:LL:COL
|
|
help: consider dereferencing here
|
|
|
|
|
LL | .filter(|c| "aeiou".contains(*c))
|
|
| +
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|