mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
6efddac288
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.
20 lines
821 B
Plaintext
20 lines
821 B
Plaintext
error[E0277]: `Dummy` doesn't implement `Debug`
|
|
--> $DIR/issue-107649.rs:105:5
|
|
|
|
|
105 | dbg!(lib::Dummy);
|
|
| ^^^^^^^^^^^^^^^^ `Dummy` cannot be formatted using `{:?}`
|
|
|
|
|
= help: the trait `Debug` is not implemented for `Dummy`, which is required by `&Dummy: Debug`
|
|
= note: add `#[derive(Debug)]` to `Dummy` or manually `impl Debug for Dummy`
|
|
= note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `dbg` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
help: consider annotating `Dummy` with `#[derive(Debug)]`
|
|
--> $DIR/auxiliary/dummy_lib.rs:2:1
|
|
|
|
|
2 + #[derive(Debug)]
|
|
3 | pub struct Dummy;
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|