Skip to content

Commit

Permalink
Update UI
Browse files Browse the repository at this point in the history
  • Loading branch information
udoprog committed Jan 11, 2025
1 parent 6397204 commit 9f6c41e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/borrowme/tests/ui/trait_diagnostics.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ error[E0277]: `MyType` doesn't implement `Debug`
13 | lang: &'a MyType,
| ^^^^^^^^^^^^^^^^ `MyType` cannot be formatted using `{:?}`
|
= help: the trait `Debug` is not implemented for `MyType`, which is required by `&&'a MyType: Debug`
= help: the trait `Debug` is not implemented for `MyType`
= note: add `#[derive(Debug)]` to `MyType` or manually `impl Debug for MyType`
= note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info)
help: consider annotating `MyType` with `#[derive(Debug)]`
Expand Down Expand Up @@ -41,7 +41,7 @@ error[E0277]: `MyOwnedType` doesn't implement `Debug`
13 | lang: &'a MyType,
| ^^^^^^^ `MyOwnedType` cannot be formatted using `{:?}`
|
= help: the trait `Debug` is not implemented for `MyOwnedType`, which is required by `&MyOwnedType: Debug`
= help: the trait `Debug` is not implemented for `MyOwnedType`
= note: add `#[derive(Debug)]` to `MyOwnedType` or manually `impl Debug for MyOwnedType`
= note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info)
help: consider annotating `MyOwnedType` with `#[derive(Debug)]`
Expand Down

0 comments on commit 9f6c41e

Please sign in to comment.